| | Date | Tue, 30 Jun 2009 17:24:33 -0700 | | From | Greg KH <> | | Subject | [patch 104/108] serial: bfin_5xx: fix building as module when early printk is enabled |
| |
2.6.30-stable review patch. If anyone has any objections, please let us know.
------------------ From: Mike Frysinger <vapier@gentoo.org>
commit 607c268ef9a4675287e77f732071e426e62c2d86 upstream.
Since early printk only makes sense/works when the serial driver is built into the kernel, disable the option for this driver when it is going to be built as a module. Otherwise we get build failures due to the ifdef handling.
Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
--- drivers/serial/bfin_5xx.c | 4 ++++ 1 file changed, 4 insertions(+) --- a/drivers/serial/bfin_5xx.c +++ b/drivers/serial/bfin_5xx.c @@ -38,6 +38,10 @@ #include <asm/cacheflush.h> #endif +#ifdef CONFIG_SERIAL_BFIN_MODULE +# undef CONFIG_EARLY_PRINTK +#endif + /* UART name and device definitions */ #define BFIN_SERIAL_NAME "ttyBF" #define BFIN_SERIAL_MAJOR 204
|