Commit 7c540d9e3da38c3d1c15fb8059e4577a84ac0066

Authored by Jeremy Kerr
Committed by Grant Likely
1 parent 21b082ecdd

proc_devtree: fix THIS_MODULE without module.h

Commit e22f628395432b967f2f505858c64450f7835365 introduced a build
breakage for ARM devtree work: the THIS_MODULE macro was added, but we
don't have module.h

This change adds the necessary #include to get THIS_MODULE defined.
While we could just replace it with NULL (PROC_FS is a bool, not a
tristate), using THIS_MODULE will prevent unexpected breakage if we
ever do compile this as a module.

Signed-off-by: Jeremy Kerr <jeremy.kerr@canonical.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Michal Simek <monstr@monstr.eu>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

fs/proc/proc_devtree.c
... ... @@ -11,6 +11,7 @@
11 11 #include <linux/stat.h>
12 12 #include <linux/string.h>
13 13 #include <linux/of.h>
  14 +#include <linux/module.h>
14 15 #include <asm/prom.h>
15 16 #include <asm/uaccess.h>
16 17 #include "internal.h"