diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-08-29 21:22:17 +0200 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-11-01 00:32:29 +0100 |
commit | 1986c93f09c98628d68bec773c16322fb5b88c38 (patch) | |
tree | 8b4dbefe8855b94acaa01065ea084fedca47a0c0 | |
parent | stop_machine.h: fix implicit use of smp.h for smp_processor_id (diff) | |
download | linux-1986c93f09c98628d68bec773c16322fb5b88c38.tar.xz linux-1986c93f09c98628d68bec773c16322fb5b88c38.zip |
miscdevice.h: fix up implicit use of lists and types
By removing the implicit presence of module.h from this file, we
will see things like:
In file included from fs/dlm/user.c:9:
include/linux/miscdevice.h:50: error: field ‘list’ has incomplete type
include/linux/miscdevice.h:54: error: expected specifier-qualifier-list before ‘mode_t’
Call out lists.h and types.h for inclusion to fix each of the
above respectively.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
-rw-r--r-- | include/linux/miscdevice.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/miscdevice.h b/include/linux/miscdevice.h index 8526e91d764f..c41d7270c6c6 100644 --- a/include/linux/miscdevice.h +++ b/include/linux/miscdevice.h @@ -1,6 +1,8 @@ #ifndef _LINUX_MISCDEVICE_H #define _LINUX_MISCDEVICE_H #include <linux/major.h> +#include <linux/list.h> +#include <linux/types.h> /* * These allocations are managed by device@lanana.org. If you use an |