public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* 2.6.10-rc2: parport_pc is broken
@ 2004-11-16 12:58 Russell King
  2004-11-16 13:46 ` Al Viro
  2004-11-16 22:52 ` Russell King
  0 siblings, 2 replies; 3+ messages in thread
From: Russell King @ 2004-11-16 12:58 UTC (permalink / raw)
  To: Linux Kernel List, Andrew Morton

I'm seeing this with CONFIG_PCI=n (which is fairly common for ARM
machines):

drivers/parport/parport_pc.c:3199: error: `parport_init_mode' undeclared (first use in this function)
drivers/parport/parport_pc.c:3199: error: (Each undeclared identifier is reported only once
drivers/parport/parport_pc.c:3199: error: for each function it appears in.)

It seems to have broken with the VT8231 addition on 7 Nov 2004.

Maybe we need to test kernel builds with CONFIG_PCI=n as part of a
standard test set?

-- 
Russell King
 Linux kernel    2.6 ARM Linux   - http://www.arm.linux.org.uk/
 maintainer of:  2.6 PCMCIA      - http://pcmcia.arm.linux.org.uk/
                 2.6 Serial core

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: 2.6.10-rc2: parport_pc is broken
  2004-11-16 12:58 2.6.10-rc2: parport_pc is broken Russell King
@ 2004-11-16 13:46 ` Al Viro
  2004-11-16 22:52 ` Russell King
  1 sibling, 0 replies; 3+ messages in thread
From: Al Viro @ 2004-11-16 13:46 UTC (permalink / raw)
  To: Linux Kernel List, Andrew Morton

On Tue, Nov 16, 2004 at 12:58:43PM +0000, Russell King wrote:
> I'm seeing this with CONFIG_PCI=n (which is fairly common for ARM
> machines):
> 
> drivers/parport/parport_pc.c:3199: error: `parport_init_mode' undeclared (first use in this function)
> drivers/parport/parport_pc.c:3199: error: (Each undeclared identifier is reported only once
> drivers/parport/parport_pc.c:3199: error: for each function it appears in.)
> 
> It seems to have broken with the VT8231 addition on 7 Nov 2004.
> 
> Maybe we need to test kernel builds with CONFIG_PCI=n as part of a
> standard test set?

Will do.  I'm adding ARM to the set as soon as I finish eicon work...

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: 2.6.10-rc2: parport_pc is broken
  2004-11-16 12:58 2.6.10-rc2: parport_pc is broken Russell King
  2004-11-16 13:46 ` Al Viro
@ 2004-11-16 22:52 ` Russell King
  1 sibling, 0 replies; 3+ messages in thread
From: Russell King @ 2004-11-16 22:52 UTC (permalink / raw)
  To: Linux Kernel List, Andrew Morton, Linus Torvalds

The following patch fixes these build errors on machines with CONFIG_PCI=n:

drivers/parport/parport_pc.c:3199: error: `parport_init_mode' undeclared (first use in this function)
drivers/parport/parport_pc.c:3199: error: (Each undeclared identifier is reported only once
drivers/parport/parport_pc.c:3199: error: for each function it appears in.)

Signed-off-by: Russell King <rmk@arm.linux.org.uk>

diff -up -x BitKeeper -x ChangeSet -x SCCS -x _xlk -x *.orig -x *.rej orig/drivers/parport/parport_pc.c linux/drivers/parport/parport_pc.c
--- orig/drivers/parport/parport_pc.c	Mon Nov 15 09:16:18 2004
+++ linux/drivers/parport/parport_pc.c	Tue Nov 16 22:48:22 2004
@@ -3154,6 +3154,7 @@ static int __init parport_parse_dma(cons
 				     PARPORT_DMA_NONE, PARPORT_DMA_NOFIFO);
 }
 
+#ifdef CONFIG_PCI
 static int __init parport_init_mode_setup(const char *str) {
 
 	printk(KERN_DEBUG "parport_pc.c: Specified parameter parport_init_mode=%s\n", str);
@@ -3170,6 +3171,7 @@ static int __init parport_init_mode_setu
 		parport_init_mode=5;
 	return 1;
 }
+#endif
 
 #ifdef MODULE
 static const char *irq[PARPORT_PC_MAX_PORTS];
@@ -3189,16 +3191,20 @@ module_param_array(dma, charp, NULL, 0);
 MODULE_PARM_DESC(verbose_probing, "Log chit-chat during initialisation");
 module_param(verbose_probing, int, 0644);
 #endif
+#ifdef CONFIG_PCI
 MODULE_PARM_DESC(init_mode, "Initialise mode for VIA VT8231 port (spp, ps2, epp, ecp or ecpepp)");
 MODULE_PARM(init_mode, "s");
+#endif
 
 static int __init parse_parport_params(void)
 {
 	unsigned int i;
 	int val;
 
+#ifdef CONFIG_PCI
 	if (init_mode)
 		parport_init_mode_setup(init_mode);
+#endif
 
 	for (i = 0; i < PARPORT_PC_MAX_PORTS && io[i]; i++) {
 		if (parport_parse_irq(irq[i], &val))
@@ -3313,9 +3319,9 @@ __setup ("parport=", parport_setup);
  *
  * parport_init_mode=[spp|ps2|epp|ecp|ecpepp]
  */
-
+#ifdef CONFIG_PCI
 __setup("parport_init_mode=",parport_init_mode_setup);
-
+#endif
 #endif
 
 /* "Parser" ends here */


-- 
Russell King
 Linux kernel    2.6 ARM Linux   - http://www.arm.linux.org.uk/
 maintainer of:  2.6 PCMCIA      - http://pcmcia.arm.linux.org.uk/
                 2.6 Serial core

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2004-11-16 22:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-16 12:58 2.6.10-rc2: parport_pc is broken Russell King
2004-11-16 13:46 ` Al Viro
2004-11-16 22:52 ` Russell King

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox