* [PATCH] powerpc: fix building hvc_opal.c
@ 2011-11-07 6:05 Michael Neuling
2011-11-07 6:12 ` Michael Neuling
0 siblings, 1 reply; 2+ messages in thread
From: Michael Neuling @ 2011-11-07 6:05 UTC (permalink / raw)
To: benh; +Cc: linuxppc-dev, Paul Mackerras, sfr
Fix building following build error:
drivers/tty/hvc/hvc_opal.c:244:12: error: 'THIS_MODULE' undeclared here (not in a function)
Signed-off-by: Michael Neuling <mikey@neuling.org>
diff --git a/drivers/tty/hvc/hvc_opal.c b/drivers/tty/hvc/hvc_opal.c
index 7b38512..cb3938f 100644
--- a/drivers/tty/hvc/hvc_opal.c
+++ b/drivers/tty/hvc/hvc_opal.c
@@ -28,6 +28,7 @@
#include <linux/console.h>
#include <linux/of.h>
#include <linux/of_platform.h>
+#include <linux/module.h>
#include <asm/hvconsole.h>
#include <asm/prom.h>
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [PATCH] powerpc: fix building hvc_opal.c
2011-11-07 6:05 [PATCH] powerpc: fix building hvc_opal.c Michael Neuling
@ 2011-11-07 6:12 ` Michael Neuling
0 siblings, 0 replies; 2+ messages in thread
From: Michael Neuling @ 2011-11-07 6:12 UTC (permalink / raw)
To: benh, Paul Mackerras, linuxppc-dev, sfr, Paul Gortmaker, torvalds
Fix building following build error:
drivers/tty/hvc/hvc_opal.c:244:12: error: 'THIS_MODULE' undeclared here (not in a function)
Signed-off-by: Michael Neuling <mikey@neuling.org>
--
Actually, this is the right fix.
sfr says this was a merge conflict between the module.h split up and the
powerpc tree, which were both merged by Linus today.
diff --git a/drivers/tty/hvc/hvc_opal.c b/drivers/tty/hvc/hvc_opal.c
index 7b38512..ced26c8 100644
--- a/drivers/tty/hvc/hvc_opal.c
+++ b/drivers/tty/hvc/hvc_opal.c
@@ -28,6 +28,7 @@
#include <linux/console.h>
#include <linux/of.h>
#include <linux/of_platform.h>
+#include <linux/export.h>
#include <asm/hvconsole.h>
#include <asm/prom.h>
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-11-07 6:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-07 6:05 [PATCH] powerpc: fix building hvc_opal.c Michael Neuling
2011-11-07 6:12 ` Michael Neuling
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).