diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-17 16:50:39 -0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-10-31 19:32:18 -0400 |
commit | 0b992080a98fa6f0722c43060819f7c311203a1c (patch) | |
tree | 76986264d72e8d2a80977cc2ee89b8e8a2659913 /drivers/uwb | |
parent | 025ed130608766bf2a18523a1ac11a860746a4e4 (diff) |
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 <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/uwb')
-rw-r--r-- | drivers/uwb/lc-dev.c | 1 | ||||
-rw-r--r-- | drivers/uwb/scan.c | 1 |
2 files changed, 2 insertions, 0 deletions
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 @@ | |||
28 | #include <linux/err.h> | 28 | #include <linux/err.h> |
29 | #include <linux/kdev_t.h> | 29 | #include <linux/kdev_t.h> |
30 | #include <linux/random.h> | 30 | #include <linux/random.h> |
31 | #include <linux/stat.h> | ||
31 | #include "uwb-internal.h" | 32 | #include "uwb-internal.h" |
32 | 33 | ||
33 | /* We initialize addresses to 0xff (invalid, as it is bcast) */ | 34 | /* 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 @@ | |||
36 | #include <linux/device.h> | 36 | #include <linux/device.h> |
37 | #include <linux/err.h> | 37 | #include <linux/err.h> |
38 | #include <linux/slab.h> | 38 | #include <linux/slab.h> |
39 | #include <linux/stat.h> | ||
39 | #include "uwb-internal.h" | 40 | #include "uwb-internal.h" |
40 | 41 | ||
41 | 42 | ||