From: Paul Gortmaker Date: Sun, 17 Jul 2011 20:50:39 +0000 (-0400) Subject: drivers/uwb: fix implicit use of stat.h X-Git-Tag: next-20110829~4^2~17 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=c7d6117efda9428ab07b70cbd7e6a59d073aa5ab;p=karo-tx-linux.git drivers/uwb: fix implicit use of stat.h The module.h (via device.h) was pulling handfuls of implicitly present header files -- including basic stuff like stat.h. Fix up these stat.h users in advance so they don't break on the cleanup. Signed-off-by: Paul Gortmaker --- diff --git a/drivers/uwb/lc-dev.c b/drivers/uwb/lc-dev.c index 90113bafefca..dea265873cbc 100644 --- a/drivers/uwb/lc-dev.c +++ b/drivers/uwb/lc-dev.c @@ -28,6 +28,7 @@ #include #include #include +#include #include "uwb-internal.h" /* We initialize addresses to 0xff (invalid, as it is bcast) */ diff --git a/drivers/uwb/scan.c b/drivers/uwb/scan.c index 367aa12786b9..cbb6a5e703d2 100644 --- a/drivers/uwb/scan.c +++ b/drivers/uwb/scan.c @@ -36,6 +36,7 @@ #include #include #include +#include #include "uwb-internal.h"