[net-next:master 1118/1134] drivers/net/dsa/b53/b53_srab.c:388:20: warning: cast from pointer to integer of different size

3 messages, 3 authors, 2016-07-11 · open the first message on its own page

[net-next:master 1118/1134] drivers/net/dsa/b53/b53_srab.c:388:20: warning: cast from pointer to integer of different size

From: kbuild test robot <hidden>
Date: 2016-07-11 21:21:37

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next.git master
head:   a536a6e13ecd0d6eb0ffc36c5d56555896617282
commit: fefae6909ead1798c39bee4d94e7e8f1f2752ef6 [1118/1134] net: dsa: b53: Allow SRAB driver to specify platform data
config: ia64-allyesconfig (attached as .config)
compiler: ia64-linux-gcc (GCC) 4.9.0
reproduce:
        wget https://git.kernel.org/cgit/linux/kernel/git/wfg/lkp-tests.git/plain/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        git checkout fefae6909ead1798c39bee4d94e7e8f1f2752ef6
        # save the attached .config to linux build tree
        make.cross ARCH=ia64 

All warnings (new ones prefixed by >>):

   drivers/net/dsa/b53/b53_srab.c: In function 'b53_srab_probe':
quoted
drivers/net/dsa/b53/b53_srab.c:388:20: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
      pdata->chip_id = (u32)of_id->data;
                       ^

vim +388 drivers/net/dsa/b53/b53_srab.c

   372	{
   373		struct b53_platform_data *pdata = pdev->dev.platform_data;
   374		struct device_node *dn = pdev->dev.of_node;
   375		const struct of_device_id *of_id = NULL;
   376		struct b53_srab_priv *priv;
   377		struct b53_device *dev;
   378		struct resource *r;
   379	
   380		if (dn)
   381			of_id = of_match_node(b53_srab_of_match, dn);
   382	
   383		if (of_id) {
   384			pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
   385			if (!pdata)
   386				return -ENOMEM;
   387	
 > 388			pdata->chip_id = (u32)of_id->data;
   389		}
   390	
   391		priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
   392		if (!priv)
   393			return -ENOMEM;
   394	
   395		r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
   396		priv->regs = devm_ioremap_resource(&pdev->dev, r);

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation

Re: [net-next:master 1118/1134] drivers/net/dsa/b53/b53_srab.c:388:20: warning: cast from pointer to integer of different size

From: David Miller <davem@davemloft.net>
Date: 2016-07-11 21:31:27

From: kbuild test robot <redacted>
Date: Tue, 12 Jul 2016 05:19:57 +0800
All warnings (new ones prefixed by >>):

   drivers/net/dsa/b53/b53_srab.c: In function 'b53_srab_probe':
quoted
quoted
drivers/net/dsa/b53/b53_srab.c:388:20: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
      pdata->chip_id = (u32)of_id->data;
                       ^
Fixed as follows:

====================
[PATCH] b53: Fix build warning.

   drivers/net/dsa/b53/b53_srab.c: In function 'b53_srab_probe':
quoted
drivers/net/dsa/b53/b53_srab.c:388:20: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
      pdata->chip_id = (u32)of_id->data;
                       ^

Reported-by: kbuild test robot <redacted>
Signed-off-by: David S. Miller <davem@davemloft.net>
---
 drivers/net/dsa/b53/b53_srab.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/net/dsa/b53/b53_srab.c b/drivers/net/dsa/b53/b53_srab.c
index 2b304ea..3e2d4a5 100644
--- a/drivers/net/dsa/b53/b53_srab.c
+++ b/drivers/net/dsa/b53/b53_srab.c
@@ -393,7 +393,7 @@ static int b53_srab_probe(struct platform_device *pdev)
 		if (!pdata)
 			return -ENOMEM;
 
-		pdata->chip_id = (u32)of_id->data;
+		pdata->chip_id = (u32)(unsigned long)of_id->data;
 	}
 
 	priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
-- 
2.1.0

Re: [net-next:master 1118/1134] drivers/net/dsa/b53/b53_srab.c:388:20: warning: cast from pointer to integer of different size

From: Florian Fainelli <f.fainelli@gmail.com>
Date: 2016-07-11 21:37:35

On 07/11/2016 02:31 PM, David Miller wrote:
From: kbuild test robot <redacted>
Date: Tue, 12 Jul 2016 05:19:57 +0800
quoted
All warnings (new ones prefixed by >>):

   drivers/net/dsa/b53/b53_srab.c: In function 'b53_srab_probe':
quoted
quoted
drivers/net/dsa/b53/b53_srab.c:388:20: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
      pdata->chip_id = (u32)of_id->data;
                       ^
Fixed as follows:

====================
[PATCH] b53: Fix build warning.

   drivers/net/dsa/b53/b53_srab.c: In function 'b53_srab_probe':
quoted
quoted
drivers/net/dsa/b53/b53_srab.c:388:20: warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
      pdata->chip_id = (u32)of_id->data;
                       ^

Reported-by: kbuild test robot <redacted>
Signed-off-by: David S. Miller <davem@davemloft.net>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>

You are fast, thanks David!
-- 
Florian
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help