* Re: linux-next: Tree for January 7 (pcmcia)
[not found] <20100107172134.af71c742.sfr@canb.auug.org.au>
@ 2010-01-07 18:10 ` Randy Dunlap
2010-01-07 20:57 ` Dominik Brodowski
0 siblings, 1 reply; 6+ messages in thread
From: Randy Dunlap @ 2010-01-07 18:10 UTC (permalink / raw)
To: Stephen Rothwell, linux-kbuild; +Cc: linux-next, LKML, Valdis.Kletnieks
On Thu, 7 Jan 2010 17:21:34 +1100 Stephen Rothwell wrote:
> Hi all,
>
> Changes since 20100106:
drivers/built-in.o: In function `yenta_probe':
yenta_socket.c:(.devinit.text+0x1e582): undefined reference to `pccard_nonstatic_ops'
CONFIG_PCCARD=y
CONFIG_PCMCIA=m
CONFIG_PCCARD_NONSTATIC=m
CONFIG_YENTA=y
so yenta code (built-in) tries to reference data that lives in a
loadable module. But I would expect this Kconfig:
config YENTA
tristate "CardBus yenta-compatible bridge support"
depends on PCI
select CARDBUS if !EMBEDDED
select PCCARD_NONSTATIC if PCMCIA
to make PCCARD_NONSTATIC=y instead of =m. Has something changed in
kconfig recently that would make that different?
---
~Randy
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: linux-next: Tree for January 7 (pcmcia)
2010-01-07 18:10 ` linux-next: Tree for January 7 (pcmcia) Randy Dunlap
@ 2010-01-07 20:57 ` Dominik Brodowski
2010-01-07 21:07 ` Michal Marek
0 siblings, 1 reply; 6+ messages in thread
From: Dominik Brodowski @ 2010-01-07 20:57 UTC (permalink / raw)
To: Randy Dunlap
Cc: Stephen Rothwell, linux-kbuild, linux-next, LKML,
Valdis.Kletnieks
Hey,
On Thu, Jan 07, 2010 at 10:10:06AM -0800, Randy Dunlap wrote:
> > Hi all,
> >
> > Changes since 20100106:
>
>
> drivers/built-in.o: In function `yenta_probe':
> yenta_socket.c:(.devinit.text+0x1e582): undefined reference to `pccard_nonstatic_ops'
>
> CONFIG_PCCARD=y
> CONFIG_PCMCIA=m
> CONFIG_PCCARD_NONSTATIC=m
> CONFIG_YENTA=y
>
> so yenta code (built-in) tries to reference data that lives in a
> loadable module.
Uh, that was I. If kconfig can't be fixed easily, I'll revert the change
> But I would expect this Kconfig:
>
> config YENTA
> tristate "CardBus yenta-compatible bridge support"
> depends on PCI
> select CARDBUS if !EMBEDDED
> select PCCARD_NONSTATIC if PCMCIA
>
> to make PCCARD_NONSTATIC=y instead of =m. Has something changed in
> kconfig recently that would make that different?
Best,
Dominik
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: linux-next: Tree for January 7 (pcmcia)
2010-01-07 20:57 ` Dominik Brodowski
@ 2010-01-07 21:07 ` Michal Marek
2010-01-07 21:55 ` Randy Dunlap
0 siblings, 1 reply; 6+ messages in thread
From: Michal Marek @ 2010-01-07 21:07 UTC (permalink / raw)
To: Dominik Brodowski
Cc: Randy Dunlap, Stephen Rothwell, linux-kbuild, linux-next, LKML,
Valdis.Kletnieks
On Thu, Jan 07, 2010 at 09:57:28PM +0100, Dominik Brodowski wrote:
> Hey,
>
> On Thu, Jan 07, 2010 at 10:10:06AM -0800, Randy Dunlap wrote:
> > > Hi all,
> > >
> > > Changes since 20100106:
> >
> >
> > drivers/built-in.o: In function `yenta_probe':
> > yenta_socket.c:(.devinit.text+0x1e582): undefined reference to `pccard_nonstatic_ops'
> >
> > CONFIG_PCCARD=y
> > CONFIG_PCMCIA=m
> > CONFIG_PCCARD_NONSTATIC=m
> > CONFIG_YENTA=y
> >
> > so yenta code (built-in) tries to reference data that lives in a
> > loadable module.
>
> Uh, that was I. If kconfig can't be fixed easily, I'll revert the change
Hi Randy, Dominik,
Please try this one-liner. The problem is that 'if X' and 'if X!=n' are not
the same in ternary logic.
Michal
From e7b12e70272484da2161c0b6c459f2eff2a989a8 Mon Sep 17 00:00:00 2001
From: Michal Marek <mmarek@suse.cz>
Date: Thu, 7 Jan 2010 21:03:11 +0100
Subject: [PATCH] pcmcia: fix yenta dependency on PCCARD_NONSTATIC
With CONFIG_PCMCIA=m and CONFIG_YENTA=y, we get
drivers/built-in.o: In function `yenta_probe':
yenta_socket.c:(.devinit.text+0x1e582): undefined reference to
`pccard_nonstatic_ops'
This is because
select PCCARD_NONSTATIC if PCMCIA
sets PCCARD_NONSTATIC = min(YENTA, PCMCIA). Change it to 'if PCMCIA!=n'
to remove the upper limit.
Reported-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Michal Marek <mmarek@suse.cz>
---
drivers/pcmcia/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/pcmcia/Kconfig b/drivers/pcmcia/Kconfig
index 5cea8ba..e196a19 100644
--- a/drivers/pcmcia/Kconfig
+++ b/drivers/pcmcia/Kconfig
@@ -84,7 +84,7 @@ config YENTA
tristate "CardBus yenta-compatible bridge support"
depends on PCI
select CARDBUS if !EMBEDDED
- select PCCARD_NONSTATIC if PCMCIA
+ select PCCARD_NONSTATIC if PCMCIA != n
---help---
This option enables support for CardBus host bridges. Virtually
all modern PCMCIA bridges are CardBus compatible. A "bridge" is
--
1.6.5.3
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: linux-next: Tree for January 7 (pcmcia)
2010-01-07 21:07 ` Michal Marek
@ 2010-01-07 21:55 ` Randy Dunlap
2010-01-08 17:54 ` Dominik Brodowski
0 siblings, 1 reply; 6+ messages in thread
From: Randy Dunlap @ 2010-01-07 21:55 UTC (permalink / raw)
To: Michal Marek
Cc: Dominik Brodowski, Randy Dunlap, Stephen Rothwell, linux-kbuild,
linux-next, LKML, Valdis.Kletnieks
On Thu, 7 Jan 2010 22:07:44 +0100 Michal Marek wrote:
> On Thu, Jan 07, 2010 at 09:57:28PM +0100, Dominik Brodowski wrote:
> > Hey,
> >
> > On Thu, Jan 07, 2010 at 10:10:06AM -0800, Randy Dunlap wrote:
> > > > Hi all,
> > > >
> > > > Changes since 20100106:
> > >
> > >
> > > drivers/built-in.o: In function `yenta_probe':
> > > yenta_socket.c:(.devinit.text+0x1e582): undefined reference to `pccard_nonstatic_ops'
> > >
> > > CONFIG_PCCARD=y
> > > CONFIG_PCMCIA=m
> > > CONFIG_PCCARD_NONSTATIC=m
> > > CONFIG_YENTA=y
> > >
> > > so yenta code (built-in) tries to reference data that lives in a
> > > loadable module.
> >
> > Uh, that was I. If kconfig can't be fixed easily, I'll revert the change
>
> Hi Randy, Dominik,
>
> Please try this one-liner. The problem is that 'if X' and 'if X!=n' are not
> the same in ternary logic.
>
> Michal
>
> From e7b12e70272484da2161c0b6c459f2eff2a989a8 Mon Sep 17 00:00:00 2001
> From: Michal Marek <mmarek@suse.cz>
> Date: Thu, 7 Jan 2010 21:03:11 +0100
> Subject: [PATCH] pcmcia: fix yenta dependency on PCCARD_NONSTATIC
>
> With CONFIG_PCMCIA=m and CONFIG_YENTA=y, we get
>
> drivers/built-in.o: In function `yenta_probe':
> yenta_socket.c:(.devinit.text+0x1e582): undefined reference to
> `pccard_nonstatic_ops'
>
> This is because
>
> select PCCARD_NONSTATIC if PCMCIA
>
> sets PCCARD_NONSTATIC = min(YENTA, PCMCIA). Change it to 'if PCMCIA!=n'
> to remove the upper limit.
>
> Reported-by: Randy Dunlap <rdunlap@xenotime.net>
> Signed-off-by: Michal Marek <mmarek@suse.cz>
Acked-by: Randy Dunlap <rdunlap@xenotime.net>
Thanks.
> ---
> drivers/pcmcia/Kconfig | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/pcmcia/Kconfig b/drivers/pcmcia/Kconfig
> index 5cea8ba..e196a19 100644
> --- a/drivers/pcmcia/Kconfig
> +++ b/drivers/pcmcia/Kconfig
> @@ -84,7 +84,7 @@ config YENTA
> tristate "CardBus yenta-compatible bridge support"
> depends on PCI
> select CARDBUS if !EMBEDDED
> - select PCCARD_NONSTATIC if PCMCIA
> + select PCCARD_NONSTATIC if PCMCIA != n
> ---help---
> This option enables support for CardBus host bridges. Virtually
> all modern PCMCIA bridges are CardBus compatible. A "bridge" is
> --
> 1.6.5.3
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
---
~Randy
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: linux-next: Tree for January 7 (pcmcia)
2010-01-07 21:55 ` Randy Dunlap
@ 2010-01-08 17:54 ` Dominik Brodowski
2010-01-08 19:24 ` Michal Marek
0 siblings, 1 reply; 6+ messages in thread
From: Dominik Brodowski @ 2010-01-08 17:54 UTC (permalink / raw)
To: Randy Dunlap
Cc: Michal Marek, Stephen Rothwell, linux-kbuild, linux-next, LKML,
Valdis.Kletnieks
Hey,
On Thu, Jan 07, 2010 at 01:55:57PM -0800, Randy Dunlap wrote:
> > On Thu, Jan 07, 2010 at 09:57:28PM +0100, Dominik Brodowski wrote:
> > > Hey,
> > >
> > > On Thu, Jan 07, 2010 at 10:10:06AM -0800, Randy Dunlap wrote:
> > > > > Hi all,
> > > > >
> > > > > Changes since 20100106:
> > > >
> > > >
> > > > drivers/built-in.o: In function `yenta_probe':
> > > > yenta_socket.c:(.devinit.text+0x1e582): undefined reference to `pccard_nonstatic_ops'
> > > >
> > > > CONFIG_PCCARD=y
> > > > CONFIG_PCMCIA=m
> > > > CONFIG_PCCARD_NONSTATIC=m
> > > > CONFIG_YENTA=y
> > > >
> > > > so yenta code (built-in) tries to reference data that lives in a
> > > > loadable module.
> > >
> > > Uh, that was I. If kconfig can't be fixed easily, I'll revert the change
> >
> > Hi Randy, Dominik,
> >
> > Please try this one-liner. The problem is that 'if X' and 'if X!=n' are not
> > the same in ternary logic.
> >
> > Michal
> >
> > From e7b12e70272484da2161c0b6c459f2eff2a989a8 Mon Sep 17 00:00:00 2001
> > From: Michal Marek <mmarek@suse.cz>
> > Date: Thu, 7 Jan 2010 21:03:11 +0100
> > Subject: [PATCH] pcmcia: fix yenta dependency on PCCARD_NONSTATIC
> >
> > With CONFIG_PCMCIA=m and CONFIG_YENTA=y, we get
> >
> > drivers/built-in.o: In function `yenta_probe':
> > yenta_socket.c:(.devinit.text+0x1e582): undefined reference to
> > `pccard_nonstatic_ops'
> >
> > This is because
> >
> > select PCCARD_NONSTATIC if PCMCIA
> >
> > sets PCCARD_NONSTATIC = min(YENTA, PCMCIA). Change it to 'if PCMCIA!=n'
> > to remove the upper limit.
> >
> > Reported-by: Randy Dunlap <rdunlap@xenotime.net>
> > Signed-off-by: Michal Marek <mmarek@suse.cz>
>
> Acked-by: Randy Dunlap <rdunlap@xenotime.net>
>
> Thanks.
Thanks for the patch. I extended it a bit further:
From 77f9eb4599f1d0f5a43cadece9809018b534e308 Mon Sep 17 00:00:00 2001
From: Michal Marek <mmarek@suse.cz>
Date: Thu, 7 Jan 2010 21:03:11 +0100
Subject: [PATCH] pcmcia: fix yenta dependency on PCCARD_NONSTATIC
With CONFIG_PCMCIA=m and CONFIG_YENTA=y, we get
drivers/built-in.o: In function `yenta_probe':
yenta_socket.c:(.devinit.text+0x1e582): undefined reference to
`pccard_nonstatic_ops'
This is because
select PCCARD_NONSTATIC if PCMCIA
sets PCCARD_NONSTATIC = min(YENTA, PCMCIA). Change it to 'if PCMCIA!=n'
to remove the upper limit.
[linux@dominikbrodowski.net: propagate change to PCMICA_M8XX]
Reported-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Acked-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
diff --git a/drivers/pcmcia/Kconfig b/drivers/pcmcia/Kconfig
index efc51b9..e8f35da 100644
--- a/drivers/pcmcia/Kconfig
+++ b/drivers/pcmcia/Kconfig
@@ -84,7 +84,7 @@ config YENTA
tristate "CardBus yenta-compatible bridge support"
depends on PCI
select CARDBUS if !EMBEDDED
- select PCCARD_NONSTATIC if PCMCIA
+ select PCCARD_NONSTATIC if PCMCIA != n
---help---
This option enables support for CardBus host bridges. Virtually
all modern PCMCIA bridges are CardBus compatible. A "bridge" is
@@ -161,8 +161,8 @@ config TCIC
config PCMCIA_M8XX
tristate "MPC8xx PCMCIA support"
- depends on PCMCIA && PPC && 8xx
- select PCCARD_IODYN if PCMCIA
+ depends on PCCARD && PPC && 8xx
+ select PCCARD_IODYN if PCMCIA != n
help
Say Y here to include support for PowerPC 8xx series PCMCIA
controller.
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: linux-next: Tree for January 7 (pcmcia)
2010-01-08 17:54 ` Dominik Brodowski
@ 2010-01-08 19:24 ` Michal Marek
0 siblings, 0 replies; 6+ messages in thread
From: Michal Marek @ 2010-01-08 19:24 UTC (permalink / raw)
To: Dominik Brodowski
Cc: Randy Dunlap, Stephen Rothwell, linux-kbuild, linux-next, LKML,
Valdis.Kletnieks
Dominik Brodowski wrote:
> From 77f9eb4599f1d0f5a43cadece9809018b534e308 Mon Sep 17 00:00:00 2001
> From: Michal Marek <mmarek@suse.cz>
> Date: Thu, 7 Jan 2010 21:03:11 +0100
> Subject: [PATCH] pcmcia: fix yenta dependency on PCCARD_NONSTATIC
>
> With CONFIG_PCMCIA=m and CONFIG_YENTA=y, we get
>
> drivers/built-in.o: In function `yenta_probe':
> yenta_socket.c:(.devinit.text+0x1e582): undefined reference to
> `pccard_nonstatic_ops'
>
> This is because
>
> select PCCARD_NONSTATIC if PCMCIA
>
> sets PCCARD_NONSTATIC = min(YENTA, PCMCIA). Change it to 'if PCMCIA!=n'
> to remove the upper limit.
>
> [linux@dominikbrodowski.net: propagate change to PCMICA_M8XX]
> Reported-by: Randy Dunlap <rdunlap@xenotime.net>
> Signed-off-by: Michal Marek <mmarek@suse.cz>
> Acked-by: Randy Dunlap <rdunlap@xenotime.net>
> Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
>
> diff --git a/drivers/pcmcia/Kconfig b/drivers/pcmcia/Kconfig
> index efc51b9..e8f35da 100644
> --- a/drivers/pcmcia/Kconfig
> +++ b/drivers/pcmcia/Kconfig
> @@ -84,7 +84,7 @@ config YENTA
> tristate "CardBus yenta-compatible bridge support"
> depends on PCI
> select CARDBUS if !EMBEDDED
> - select PCCARD_NONSTATIC if PCMCIA
> + select PCCARD_NONSTATIC if PCMCIA != n
> ---help---
> This option enables support for CardBus host bridges. Virtually
> all modern PCMCIA bridges are CardBus compatible. A "bridge" is
> @@ -161,8 +161,8 @@ config TCIC
>
> config PCMCIA_M8XX
> tristate "MPC8xx PCMCIA support"
> - depends on PCMCIA && PPC && 8xx
> - select PCCARD_IODYN if PCMCIA
> + depends on PCCARD && PPC && 8xx
> + select PCCARD_IODYN if PCMCIA != n
PCCARD_IODYN is bool, so this change is not necessary (but doesn't do
any harm either).
Michal
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-01-08 19:24 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20100107172134.af71c742.sfr@canb.auug.org.au>
2010-01-07 18:10 ` linux-next: Tree for January 7 (pcmcia) Randy Dunlap
2010-01-07 20:57 ` Dominik Brodowski
2010-01-07 21:07 ` Michal Marek
2010-01-07 21:55 ` Randy Dunlap
2010-01-08 17:54 ` Dominik Brodowski
2010-01-08 19:24 ` Michal Marek
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).