From: Paul Gortmaker Date: Sun, 17 Jul 2011 20:24:35 +0000 (-0400) Subject: regulator: Fix implicit use of notifier.h by driver.h X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=ced55d4ef7d6988bd0608423cf1e2225777f45cc;p=~shefty%2Frdma-dev.git regulator: Fix implicit use of notifier.h by driver.h This was implicitly appearing by way of module.h -- but when we fix that, we'll get this: In file included from drivers/regulator/dummy.c:21: include/linux/regulator/driver.h:197: error: field 'notifier' has incomplete type make[3]: *** [drivers/regulator/dummy.o] Error 1 Signed-off-by: Paul Gortmaker --- diff --git a/include/linux/regulator/driver.h b/include/linux/regulator/driver.h index 12a1aa04b72..52c89ae32f6 100644 --- a/include/linux/regulator/driver.h +++ b/include/linux/regulator/driver.h @@ -16,6 +16,7 @@ #define __LINUX_REGULATOR_DRIVER_H_ #include +#include #include struct regulator_dev;