]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
can: c_can: fix error checking of priv->instance in probe()
authorChen Gang <gang.chen@asianux.com>
Wed, 21 Aug 2013 09:09:33 +0000 (17:09 +0800)
committerMarc Kleine-Budde <mkl@pengutronix.de>
Thu, 22 Aug 2013 07:40:19 +0000 (09:40 +0200)
This patch adds a type cast from 'unsigned int' to 'int'.

'priv->instance' may less than zero, so need a type cast, the related
warnings (allmodconfig, "EXTRA_CFLAGS=-W"):

  drivers/net/can/c_can/c_can_platform.c:198:3: warning: comparison of unsigned expression < 0 is always false [-Wtype-limits]

Signed-off-by: Chen Gang <gang.chen@asianux.com>
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
drivers/net/can/c_can/c_can_platform.c

index c6f838d922a51b3883f1dea9ba26f2e0a9c63c4b..294ced3cc227520883c6ebe50ac255634d0f0f7c 100644 (file)
@@ -195,7 +195,7 @@ static int c_can_plat_probe(struct platform_device *pdev)
 
                res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
                priv->raminit_ctrlreg = devm_ioremap_resource(&pdev->dev, res);
-               if (IS_ERR(priv->raminit_ctrlreg) || priv->instance < 0)
+               if (IS_ERR(priv->raminit_ctrlreg) || (int)priv->instance < 0)
                        dev_info(&pdev->dev, "control memory is not used for raminit\n");
                else
                        priv->raminit = c_can_hw_raminit;