diff options
author | Syam Sidhardhan <syamsidhardh@gmail.com> | 2013-02-15 02:24:32 +0530 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-05-04 15:31:01 -0400 |
commit | 75fc0cf6af45e5de251caa9421b3c3d1bdc273c8 (patch) | |
tree | ddbdf5ddff31c0293841f063f278479bc8ff30e5 /fs | |
parent | b1983cd897ec06080ec4884989c6a3f1e7ee7dce (diff) | |
download | linux-exynos-75fc0cf6af45e5de251caa9421b3c3d1bdc273c8.tar.gz linux-exynos-75fc0cf6af45e5de251caa9421b3c3d1bdc273c8.tar.bz2 linux-exynos-75fc0cf6af45e5de251caa9421b3c3d1bdc273c8.zip |
proc_devtree: Replace include linux/module.h with linux/export.h
Since it uses only THIS_MODULE macro, include <linux/export.h>
is the right to go here.
Signed-off-by: Syam Sidhardhan <s.syam@samsung.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/proc/proc_devtree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/proc/proc_devtree.c b/fs/proc/proc_devtree.c index 505afc950e0a..106a83570630 100644 --- a/fs/proc/proc_devtree.c +++ b/fs/proc/proc_devtree.c @@ -12,7 +12,7 @@ #include <linux/stat.h> #include <linux/string.h> #include <linux/of.h> -#include <linux/module.h> +#include <linux/export.h> #include <linux/slab.h> #include <asm/prom.h> #include <asm/uaccess.h> |