From 9623932cd5815e280cef5ebb54b5ee92bec382ad Mon Sep 17 00:00:00 2001 From: Paul Gortmaker Date: Sun, 10 Jul 2011 13:21:52 -0400 Subject: drivers/w1: Add export.h for EXPORT_SYMBOL/THIS_MODULE Give these files export.h so that they can reliably get the EXPORT_SYMBOL and THIS_MODULE macros in the future, once module.h isn't implicitly everywhere. Signed-off-by: Paul Gortmaker --- drivers/w1/w1_family.c | 1 + drivers/w1/w1_int.c | 1 + 2 files changed, 2 insertions(+) (limited to 'drivers/w1') diff --git a/drivers/w1/w1_family.c b/drivers/w1/w1_family.c index 63359797c8b..e9309778ee7 100644 --- a/drivers/w1/w1_family.c +++ b/drivers/w1/w1_family.c @@ -23,6 +23,7 @@ #include #include /* schedule_timeout() */ #include +#include #include "w1_family.h" #include "w1.h" diff --git a/drivers/w1/w1_int.c b/drivers/w1/w1_int.c index d220bce2cee..aa3971ce02b 100644 --- a/drivers/w1/w1_int.c +++ b/drivers/w1/w1_int.c @@ -24,6 +24,7 @@ #include #include #include +#include #include "w1.h" #include "w1_log.h" -- cgit v1.2.3 From 4d184129b2f91e41d357e920a25a83317d79dfe2 Mon Sep 17 00:00:00 2001 From: Paul Gortmaker Date: Thu, 15 Sep 2011 23:09:52 -0400 Subject: drivers/w1: Add moduleparam.h to drivers/w1/w1_int.c It doesn't need the full module.h but it was getting moduleparam.h from the fact that module.h was everywhere. Signed-off-by: Paul Gortmaker --- drivers/w1/w1_int.c | 1 + 1 file changed, 1 insertion(+) (limited to 'drivers/w1') diff --git a/drivers/w1/w1_int.c b/drivers/w1/w1_int.c index aa3971ce02b..c1591e51807 100644 --- a/drivers/w1/w1_int.c +++ b/drivers/w1/w1_int.c @@ -25,6 +25,7 @@ #include #include #include +#include #include "w1.h" #include "w1_log.h" -- cgit v1.2.3