All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] 2.6.23-mm1 gdth doesn't compile with CONFIG_ISA && !CONFIG_EISA
@ 2007-10-13 18:56 Bernhard Rosenkraenzer
  0 siblings, 0 replies; only message in thread
From: Bernhard Rosenkraenzer @ 2007-10-13 18:56 UTC (permalink / raw)
  To: linux-kernel; +Cc: akpm

gdth_irq_tab is defined only in #ifdef CONFIG_EISA, but used in 
gdth_init_isa()

Signed-off-by: Bernhard Rosenkraenzer <bero@arklinux.org>
--- linux-2.6.23/drivers/scsi/gdth.c.ark	2007-10-13 20:51:32.000000000 +0200
+++ linux-2.6.23/drivers/scsi/gdth.c	2007-10-13 20:52:05.000000000 +0200
@@ -288,7 +288,7 @@ static struct timer_list gdth_timer;
 #ifdef CONFIG_ISA
 static unchar   gdth_drq_tab[4] = {5,6,7,7};            /* DRQ table */
 #endif
-#ifdef CONFIG_EISA
+#if defined(CONFIG_EISA) || defined(CONFIG_ISA)
 static unchar   gdth_irq_tab[6] = {0,10,11,12,14,0};    /* IRQ table */
 #endif
 static unchar   gdth_polling;                           /* polling if TRUE */

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-10-13 19:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-10-13 18:56 [PATCH] 2.6.23-mm1 gdth doesn't compile with CONFIG_ISA && !CONFIG_EISA Bernhard Rosenkraenzer

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.