From: Paul Gortmaker Date: Sun, 3 Jul 2011 19:28:29 +0000 (-0400) Subject: drivers/power: Add module.h to the actual modules in drivers/power X-Git-Tag: next-20110729~14^2~68 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=fdb46ccf01e4e9a5b45c89bb4dfaa60d9c954b1f;p=karo-tx-linux.git drivers/power: Add module.h to the actual modules in drivers/power The module.h header is no longer going to be implicitly present everywhere. So real modular users need to call out its use explicitly in advance. Signed-off-by: Paul Gortmaker --- diff --git a/drivers/power/max17042_battery.c b/drivers/power/max17042_battery.c index c5c8805156cb..0814aff8d26f 100644 --- a/drivers/power/max17042_battery.c +++ b/drivers/power/max17042_battery.c @@ -28,6 +28,7 @@ #include #include #include +#include enum max17042_register { MAX17042_STATUS = 0x00, diff --git a/drivers/power/max8903_charger.c b/drivers/power/max8903_charger.c index 33ff0e37809e..d26e8281217b 100644 --- a/drivers/power/max8903_charger.c +++ b/drivers/power/max8903_charger.c @@ -26,6 +26,7 @@ #include #include #include +#include struct max8903_data { struct max8903_pdata *pdata;