aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGavin Shan <gwshan@linux.vnet.ibm.com>2014-05-04 22:09:05 -0400
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2014-05-19 20:54:04 -0400
commit1e54b9383cf7e1cbc004b3ccc4c4eaadecce9d95 (patch)
treebb0116fba52f81d61036f0ba74e05272e3dcd028
parentc534bbe5634bcc84cab0665fe8961df2c220aeec (diff)
powerpc/eeh: Fix build error for celleb
Commit 7f52a526f ("powerpc/eeh: Allow to disable EEH") caused following build error with "celleb_defconfig" as being catched by Mikey on linux-next. arch/powerpc/kernel/eeh.c: In function 'eeh_init_proc': arch/powerpc/kernel/eeh.c:1173:37: error: 'powerpc_debugfs_root' \ undeclared (first use in this function) arch/powerpc/kernel/eeh.c:1173:37: note: each undeclared identifier \ is reported only once for each function it appears in Reported-by: Michael Neuling <mikey@neuling.org> Signed-off-by: Gavin Shan <gwshan@linux.vnet.ibm.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
-rw-r--r--arch/powerpc/kernel/eeh.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/eeh.c b/arch/powerpc/kernel/eeh.c
index 3764fb788d6c..7051ea3101b9 100644
--- a/arch/powerpc/kernel/eeh.c
+++ b/arch/powerpc/kernel/eeh.c
@@ -36,6 +36,7 @@
36#include <linux/of.h> 36#include <linux/of.h>
37 37
38#include <linux/atomic.h> 38#include <linux/atomic.h>
39#include <asm/debug.h>
39#include <asm/eeh.h> 40#include <asm/eeh.h>
40#include <asm/eeh_event.h> 41#include <asm/eeh_event.h>
41#include <asm/io.h> 42#include <asm/io.h>