[patch] irqchip: mtk-sysirq: fix an error code

Yingjoe Chen yingjoe.chen at mediatek.com
Wed Feb 4 05:17:17 PST 2015


On Fri, 2015-01-30 at 11:28 +0300, Dan Carpenter wrote:
> "chip_data->intpol_base" used to be an ERR_PTR() but we recently changed
> it to be NULL.  We need to update the error code as well because
> "PTR_ERR(NULL)" means success where really we want to return -ENOMEM.
> 
> Fixes: cdb647a772e9 ('irqchip: mtk-sysirq: Get irq number from register resource size')
> Signed-off-by: Dan Carpenter <dan.carpenter at oracle.com>
> 
> diff --git a/drivers/irqchip/irq-mtk-sysirq.c b/drivers/irqchip/irq-mtk-sysirq.c
> index eaf0a71..22eb34c 100644
> --- a/drivers/irqchip/irq-mtk-sysirq.c
> +++ b/drivers/irqchip/irq-mtk-sysirq.c
> @@ -144,7 +144,7 @@ static int __init mtk_sysirq_of_init(struct device_node *node,
>  	chip_data->intpol_base = ioremap(res.start, size);
>  	if (!chip_data->intpol_base) {
>  		pr_err("mtk_sysirq: unable to map sysirq register\n");
> -		ret = PTR_ERR(chip_data->intpol_base);
> +		ret = -ENOMEM;
>  		goto out_free;
>  	}
>  

Dan,

Thanks for catching this.
Acked-by: Yingjoe Chen <yingjoe.chen at mediatek.com>

I changed to use ioremap(), and remember to change the null pointer
check but not the return type. Sorry for the mistake.

Joe.C





More information about the linux-arm-kernel mailing list