Module Name:    src
Committed By:   jakllsch
Date:           Sun Sep 27 18:31:58 UTC 2009

Modified Files:
        src/sys/arch/i386/pci: gcscpcib.c

Log Message:
Make this build without gpio(4).


To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 src/sys/arch/i386/pci/gcscpcib.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/i386/pci/gcscpcib.c
diff -u src/sys/arch/i386/pci/gcscpcib.c:1.7 src/sys/arch/i386/pci/gcscpcib.c:1.8
--- src/sys/arch/i386/pci/gcscpcib.c:1.7	Mon May  4 12:41:09 2009
+++ src/sys/arch/i386/pci/gcscpcib.c	Sun Sep 27 18:31:58 2009
@@ -1,4 +1,4 @@
-/* $NetBSD: gcscpcib.c,v 1.7 2009/05/04 12:41:09 cegger Exp $ */
+/* $NetBSD: gcscpcib.c,v 1.8 2009/09/27 18:31:58 jakllsch Exp $ */
 /* $OpenBSD: gcscpcib.c,v 1.6 2007/11/17 17:02:47 mbalmer Exp $	*/
 
 /*
@@ -24,7 +24,7 @@
  * AMD CS5535/CS5536 series LPC bridge also containing timer, watchdog and GPIO.
  */
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: gcscpcib.c,v 1.7 2009/05/04 12:41:09 cegger Exp $");
+__KERNEL_RCSID(0, "$NetBSD: gcscpcib.c,v 1.8 2009/09/27 18:31:58 jakllsch Exp $");
 
 #include "gpio.h"
 
@@ -87,11 +87,13 @@
 	struct sysmon_wdog	sc_smw;
 	int			sc_wdt_mfgpt;
 
+#if NGPIO > 0
 	/* GPIO interface */
 	bus_space_tag_t		sc_gpio_iot;
 	bus_space_handle_t	sc_gpio_ioh;
 	struct gpio_chipset_tag	sc_gpio_gc;
 	gpio_pin_t		sc_gpio_pins[AMD553X_GPIO_NPINS];
+#endif
 
 	/* SMbus/i2c interface */ 
 #if 0
@@ -159,7 +161,9 @@
 	sc->sc_pcib.sc_pc = pa->pa_pc;
 	sc->sc_pcib.sc_tag = pa->pa_tag;
 	sc->sc_iot = pa->pa_iot;
+#if NGPIO > 0
 	sc->sc_gpio_iot = pa->pa_iot;
+#endif
 
 	/* Attach the PCI-ISA bridge at first */
 	pcibattach(parent, self, aux);

Reply via email to