Commit 40c26230 authored by Qianfeng Rong's avatar Qianfeng Rong Committed by Thomas Gleixner
Browse files

irqchip: Use int type to store negative error codes



Change the 'ret' variable from unsigned int to int to store negative error
codes or zero returned by other functions.

Storing the negative error codes in unsigned type, doesn't cause an issue
at runtime but assigning negative error codes to unsigned type may trigger
a compiler warning when the -Wsign-conversion flag is enabled.

Signed-off-by: default avatarQianfeng Rong <rongqianfeng@vivo.com>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Acked-by: default avatarMarc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/all/20250829132020.82077-1-rongqianfeng@vivo.com
parent 54a1726d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1766,8 +1766,9 @@ static int gic_irq_domain_select(struct irq_domain *d,
				 struct irq_fwspec *fwspec,
				 enum irq_domain_bus_token bus_token)
{
	unsigned int type, ret, ppi_idx;
	unsigned int type, ppi_idx;
	irq_hw_number_t hwirq;
	int ret;

	/* Not for us */
	if (fwspec->fwnode != d->fwnode)
+2 −1
Original line number Diff line number Diff line
@@ -73,8 +73,9 @@ static int __init nvic_of_init(struct device_node *node,
			       struct device_node *parent)
{
	unsigned int clr = IRQ_NOREQUEST | IRQ_NOPROBE | IRQ_NOAUTOEN;
	unsigned int irqs, i, ret, numbanks;
	unsigned int irqs, i, numbanks;
	void __iomem *nvic_base;
	int ret;

	numbanks = (readl_relaxed(V7M_SCS_ICTR) &
		    V7M_SCS_ICTR_INTLINESNUM_MASK) + 1;
+2 −1
Original line number Diff line number Diff line
@@ -142,11 +142,12 @@ static const struct irq_domain_ops rza1_irqc_domain_ops = {
static int rza1_irqc_parse_map(struct rza1_irqc_priv *priv,
			       struct device_node *gic_node)
{
	unsigned int imaplen, i, j, ret;
	struct device *dev = priv->dev;
	unsigned int imaplen, i, j;
	struct device_node *ipar;
	const __be32 *imap;
	u32 intsize;
	int ret;

	imap = of_get_property(dev->of_node, "interrupt-map", &imaplen);
	if (!imap)