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: MMI-PSA29.97-13-9~18087^2~30 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=0b992080a98fa6f0722c43060819f7c311203a1c;p=GitHub%2FMotorolaMobilityLLC%2Fkernel-slsi.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"