diff options
author | Anton Vorontsov <cbouatmailru@gmail.com> | 2010-12-22 02:44:49 +0300 |
---|---|---|
committer | Anton Vorontsov <cbouatmailru@gmail.com> | 2010-12-22 02:52:25 +0300 |
commit | f3dcab70e192b0489ac05cc554e0b1cedae46d1a (patch) | |
tree | 842ac65718224857424e7bf8c82093b3b4cb5ba3 /drivers/power | |
parent | c66ae9bb4dcaac78cc5e30d0ce7ff2bf3dcb48d9 (diff) | |
download | blackbird-obmc-linux-f3dcab70e192b0489ac05cc554e0b1cedae46d1a.tar.gz blackbird-obmc-linux-f3dcab70e192b0489ac05cc554e0b1cedae46d1a.zip |
jz4740-battery: Should include linux/io.h
During test-build (with disabled 'depends on') I found that
jz4740-battery driver lacks linux/io.h, which makes build break
like this (on x86):
CC [M] drivers/power/isp1704_charger.o
jz4740-battery.c: In function 'jz_battery_read_voltage':
jz4740-battery.c:84: error: implicit declaration of function 'readw’
jz4740-battery.c: In function 'jz_battery_probe':
jz4740-battery.c:284: error: implicit declaration of function 'ioremap_nocache’
jz4740-battery.c:285: warning: assignment makes pointer from integer without a cast
jz4740-battery.c:372: error: implicit declaration of function 'iounmap'
make[2]: *** [drivers/power/jz4740-battery.o] Error 1
This patch fixes the issues, and thus makes it easier to build-test
the driver for me.
Signed-off-by: Anton Vorontsov <cbouatmailru@gmail.com>
Diffstat (limited to 'drivers/power')
-rw-r--r-- | drivers/power/jz4740-battery.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/power/jz4740-battery.c b/drivers/power/jz4740-battery.c index 5b4821593201..02414db6a94c 100644 --- a/drivers/power/jz4740-battery.c +++ b/drivers/power/jz4740-battery.c @@ -19,6 +19,7 @@ #include <linux/module.h> #include <linux/platform_device.h> #include <linux/slab.h> +#include <linux/io.h> #include <linux/delay.h> #include <linux/gpio.h> |