From: Geert Uytterhoeven <geert@linux-m68k.org>

Fix compilation if CONFIG_PCI is not set



---

 25-akpm/drivers/char/istallion.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)

diff -puN drivers/char/istallion.c~istallion-compile-fix drivers/char/istallion.c
--- 25/drivers/char/istallion.c~istallion-compile-fix	Mon Feb  2 12:12:02 2004
+++ 25-akpm/drivers/char/istallion.c	Mon Feb  2 12:12:02 2004
@@ -417,7 +417,6 @@ int		stli_eisaprobe = STLI_EISAPROBE;
 #ifndef PCI_DEVICE_ID_ECRA
 #define	PCI_DEVICE_ID_ECRA		0x0004
 #endif
-#endif
 
 static struct pci_device_id istallion_pci_tbl[] = {
 	{ PCI_VENDOR_ID_STALLION, PCI_DEVICE_ID_ECRA, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
@@ -425,6 +424,8 @@ static struct pci_device_id istallion_pc
 };
 MODULE_DEVICE_TABLE(pci, istallion_pci_tbl);
 
+#endif /* CONFIG_PCI */
+
 /*****************************************************************************/
 
 /*

_