diff options
author | Paul Mundt <lethal@linux-sh.org> | 2010-04-20 14:34:15 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2010-04-20 14:34:15 +0900 |
commit | 1d5cc550ede76825ab401941fb1165f2056e2c46 (patch) | |
tree | 864bb63f4ca6c896d2fd00ca75c0f93b19aedebf /arch/sh | |
parent | 3cf6fa1e334a3a4af702f92229690195018b747f (diff) | |
download | blackbird-op-linux-1d5cc550ede76825ab401941fb1165f2056e2c46.tar.gz blackbird-op-linux-1d5cc550ede76825ab401941fb1165f2056e2c46.zip |
sh: dwarf unwinder needs linux/module.h.
Previously the struct module definition was pulled in from other headers,
but we want the reference to be explicit. Fixes up randconfig build
issues.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/kernel/dwarf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sh/kernel/dwarf.c b/arch/sh/kernel/dwarf.c index 94739ee7aa74..8c09f62cebd1 100644 --- a/arch/sh/kernel/dwarf.c +++ b/arch/sh/kernel/dwarf.c @@ -22,6 +22,7 @@ #include <linux/mm.h> #include <linux/elf.h> #include <linux/ftrace.h> +#include <linux/module.h> #include <asm/dwarf.h> #include <asm/unwinder.h> #include <asm/sections.h> |