From: Paul Gortmaker Date: Thu, 28 Jul 2011 01:21:04 +0000 (-0400) Subject: bcma: fix implicit use of export.h contents X-Git-Tag: next-20110826~3^2~43 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8c76bd56915ec6759a201d0d57d79631022ac9c8;p=karo-tx-linux.git bcma: fix implicit use of export.h contents Fix in advance, or we will get this: drivers/bcma/core.c:20: warning: data definition has no type or storage class drivers/bcma/core.c:20: warning: type defaults to 'int' in declaration of 'EXPORT_SYMBOL_GPL' drivers/bcma/core.c:20: warning: parameter names (without types) in function declaration Signed-off-by: Paul Gortmaker --- diff --git a/drivers/bcma/core.c b/drivers/bcma/core.c index 4a04a49cc06d..0b8969eab6df 100644 --- a/drivers/bcma/core.c +++ b/drivers/bcma/core.c @@ -6,6 +6,7 @@ */ #include "bcma_private.h" +#include #include bool bcma_core_is_enabled(struct bcma_device *core) diff --git a/drivers/bcma/driver_chipcommon.c b/drivers/bcma/driver_chipcommon.c index 851e05bc948a..291cce469a9a 100644 --- a/drivers/bcma/driver_chipcommon.c +++ b/drivers/bcma/driver_chipcommon.c @@ -9,6 +9,7 @@ */ #include "bcma_private.h" +#include #include static inline u32 bcma_cc_write32_masked(struct bcma_drv_cc *cc, u16 offset, diff --git a/drivers/bcma/driver_pci.c b/drivers/bcma/driver_pci.c index 25f3ddf33823..e0d79d074480 100644 --- a/drivers/bcma/driver_pci.c +++ b/drivers/bcma/driver_pci.c @@ -9,6 +9,7 @@ */ #include "bcma_private.h" +#include #include /**************************************************