diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2011-06-29 02:55:28 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-06-29 02:55:28 -0700 |
commit | 8d0f7cea7aa1bb63ddd0e94589d2c33bc99f0d9a (patch) | |
tree | 264e0bf5910028c27dba65edada156f899712ca7 /drivers | |
parent | 213ade8ca8c854435d99e4d2927655b2ae4191e9 (diff) | |
download | linux-3.10-8d0f7cea7aa1bb63ddd0e94589d2c33bc99f0d9a.tar.gz linux-3.10-8d0f7cea7aa1bb63ddd0e94589d2c33bc99f0d9a.tar.bz2 linux-3.10-8d0f7cea7aa1bb63ddd0e94589d2c33bc99f0d9a.zip |
net: include io.h in sja1000_of_platform.c for iounmap etc
fixes these build errors:
drivers/net/can/sja1000/sja1000_of_platform.c: In function 'sja1000_ofp_read_reg':
drivers/net/can/sja1000/sja1000_of_platform.c:61:2: error: implicit declaration of function 'in_8'
drivers/net/can/sja1000/sja1000_of_platform.c: In function 'sja1000_ofp_write_reg':
drivers/net/can/sja1000/sja1000_of_platform.c:67:2: error: implicit declaration of function 'out_8'
drivers/net/can/sja1000/sja1000_of_platform.c: In function 'sja1000_ofp_remove':
drivers/net/can/sja1000/sja1000_of_platform.c:81:2: error: implicit declaration of function 'iounmap'
drivers/net/can/sja1000/sja1000_of_platform.c: In function 'sja1000_ofp_probe':
drivers/net/can/sja1000/sja1000_of_platform.c:113:2: error: implicit declaration of function 'ioremap_nocache'
drivers/net/can/sja1000/sja1000_of_platform.c:113:7: warning: assignment makes pointer from integer without a cast
Caused by commit b7f080cfe223 ("net: remove mm.h inclusion from
netdevice.h").
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/can/sja1000/sja1000_of_platform.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/can/sja1000/sja1000_of_platform.c b/drivers/net/can/sja1000/sja1000_of_platform.c index 9793df6e345..cee6ba2b8b5 100644 --- a/drivers/net/can/sja1000/sja1000_of_platform.c +++ b/drivers/net/can/sja1000/sja1000_of_platform.c @@ -38,6 +38,7 @@ #include <linux/interrupt.h> #include <linux/netdevice.h> #include <linux/delay.h> +#include <linux/io.h> #include <linux/can/dev.h> #include <linux/of_platform.h> |