From: Michael Neuling <mikey@neuling.org>
To: Paul Gortmaker <paul.gortmaker@windriver.com>, Greg KH <gregkh@suse.de>
Cc: Alan Cox <alan@linux.intel.com>,
linux-kernel@vger.kernel.org, sfr@canb.auug.org.au,
linux-next@vger.kernel.org, Steven Rostedt <rostedt@goodmis.org>,
Michal Marek <mmarek@suse.cz>
Subject: Re: [PATCH] serial: fix Kconfig for Freescale 16550
Date: Tue, 13 Dec 2011 12:53:22 +1100 [thread overview]
Message-ID: <21148.1323741202@neuling.org> (raw)
In-Reply-To: <20111213005444.GA27190@suse.de>
In message <20111213005444.GA27190@suse.de> you wrote:
> On Tue, Dec 13, 2011 at 11:31:03AM +1100, Michael Neuling wrote:
> > next-20111212 breaks with linking a pmac32_defconfig with:
> > drivers/built-in.o: In function `fsl8250_handle_irq':
> > (.text+0x7ba74): undefined reference to `serial8250_modem_status'
> > drivers/built-in.o: In function `fsl8250_handle_irq':
> > (.text+0x7baa4): undefined reference to `serial8250_tx_chars'
> > drivers/built-in.o: In function `fsl8250_handle_irq':
> > (.text+0x7bab4): undefined reference to `serial8250_rx_chars'
> >
> > Caused by:
> > 9deaa53 serial: add irq handler for Freescale 16550 errata.
> >
> > pmac32_defconfig results in SERIAL_8250_FSL=y but SERIAL_8250=m so
> > 8250_fsl.c doesn't link properly.
> >
> > This explicitly makes SERIAL_8250_FSL depends on SERIAL_8250=y.
> >
> > Signed-off-by: Michael Neuling <mikey@neuling.org>
> > ---
> > I'm not sure this is the right fix as it seems like a Kconfig bug.
> >
> > diff --git a/drivers/tty/serial/Kconfig b/drivers/tty/serial/Kconfig
> > index a1d55c3..c9046de 100644
> > --- a/drivers/tty/serial/Kconfig
> > +++ b/drivers/tty/serial/Kconfig
> > @@ -99,7 +99,7 @@ config SERIAL_8250_PNP
> >
> > config SERIAL_8250_FSL
> > bool
> > - depends on SERIAL_8250 && PPC
> > + depends on SERIAL_8250=y && PPC
>
> Then you can't select SERIAL_8250 as a module at all, right?
Correct, unless SERIAL_8250_FOL=n of course.
> Perhaps you should allow SERIAL_8250_FSL to be a module as well here?
> So changing the bool to a tristate should be the correct option? Can
> you try that?
Yep, that works also. New patch below.
This should probably be aced by Paul to ensure he's cool with it being
a module now.
Mikey
From: Michael Neuling <mikey@neuling.org>
serial: fix Kconfig for Freescale 16550
next-20111212 breaks with linking a pmac32_defconfig with:
drivers/built-in.o: In function `fsl8250_handle_irq':
(.text+0x7ba74): undefined reference to `serial8250_modem_status'
drivers/built-in.o: In function `fsl8250_handle_irq':
(.text+0x7baa4): undefined reference to `serial8250_tx_chars'
drivers/built-in.o: In function `fsl8250_handle_irq':
(.text+0x7bab4): undefined reference to `serial8250_rx_chars'
Caused by:
9deaa53 serial: add irq handler for Freescale 16550 errata.
pmac32_defconfig results in SERIAL_8250_FSL=y but SERIAL_8250=m so
8250_fsl.c doesn't link properly for the kernel.
This makes SERIAL_8250_FSL tristate.
Signed-off-by: Michael Neuling <mikey@neuling.org>
Suggested-by: Greg KH <gregkh@suse.de>
diff --git a/drivers/tty/serial/Kconfig b/drivers/tty/serial/Kconfig
index a1d55c3..d8832a4 100644
--- a/drivers/tty/serial/Kconfig
+++ b/drivers/tty/serial/Kconfig
@@ -98,7 +98,7 @@ config SERIAL_8250_PNP
disable this feature if you only need legacy serial support.
config SERIAL_8250_FSL
- bool
+ tristate
depends on SERIAL_8250 && PPC
default PPC
next prev parent reply other threads:[~2011-12-13 1:53 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-12-13 0:31 [PATCH] serial: fix Kconfig for Freescale 16550 Michael Neuling
2011-12-13 0:54 ` Greg KH
2011-12-13 1:53 ` Michael Neuling [this message]
2011-12-13 2:47 ` Paul Gortmaker
2011-12-13 2:47 ` Paul Gortmaker
2011-12-13 2:58 ` Michael Neuling
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=21148.1323741202@neuling.org \
--to=mikey@neuling.org \
--cc=alan@linux.intel.com \
--cc=gregkh@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-next@vger.kernel.org \
--cc=mmarek@suse.cz \
--cc=paul.gortmaker@windriver.com \
--cc=rostedt@goodmis.org \
--cc=sfr@canb.auug.org.au \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.