summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-12-21 13:55:46 +0000
committerpeter <peter@FreeBSD.org>1999-12-21 13:55:46 +0000
commit818416f100108db45e2c2e64142e8e3df6fbdede (patch)
treef795b98fdfe340d50fd072fdc2f28f33bbd47328 /sys
parentde7c0627277719a373c10d33903c025fb6a27619 (diff)
downloadFreeBSD-src-818416f100108db45e2c2e64142e8e3df6fbdede.zip
FreeBSD-src-818416f100108db45e2c2e64142e8e3df6fbdede.tar.gz
Remove #if NISA > 0 - this is best done by the configuration process.
It had a heap of unreferenced stuff if there was no isa configured in the system.
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/sound/isa/gusc.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/sys/dev/sound/isa/gusc.c b/sys/dev/sound/isa/gusc.c
index bde185b..bbda980 100644
--- a/sys/dev/sound/isa/gusc.c
+++ b/sys/dev/sound/isa/gusc.c
@@ -27,9 +27,6 @@
* $FreeBSD$
*/
-#include "gusc.h"
-#include "isa.h"
-
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/kernel.h>
@@ -45,14 +42,11 @@
#include <dev/sound/chip.h>
#include "bus_if.h"
-
-#if NISA > 0
#include <isa/isavar.h>
#include <isa/isa_common.h>
#ifdef __alpha__ /* XXX workaround a stupid warning */
#include <alpha/isa/isavar.h>
#endif
-#endif /* NISA > 0 */
#define LOGICALID_NOPNP 0
#define LOGICALID_PCM 0x0000561e
@@ -85,12 +79,10 @@ struct gusc_softc {
typedef struct gusc_softc *sc_p;
-#if NISA > 0
static int gusc_probe(device_t dev);
static int gusc_attach(device_t dev);
static int gusisa_probe(device_t dev);
static void gusc_intr(void *);
-#endif /* NISA > 0 */
static struct resource *gusc_alloc_resource(device_t bus, device_t child, int type, int *rid,
u_long start, u_long end, u_long count, u_int flags);
static int gusc_release_resource(device_t bus, device_t child, int type, int rid,
@@ -104,8 +96,6 @@ static int release_resource(sc_p scp);
static devclass_t gusc_devclass;
-#if NISA > 0
-
static int
gusc_probe(device_t dev)
{
@@ -361,7 +351,6 @@ gusc_intr(void *arg)
#endif /* notyet */
} while (did_something != 0);
}
-#endif /* NISA > 0 */
static struct resource *
gusc_alloc_resource(device_t bus, device_t child, int type, int *rid,
@@ -644,7 +633,6 @@ release_resource(sc_p scp)
return (0);
}
-#if NISA > 0
static device_method_t gusc_methods[] = {
/* Device interface */
DEVMETHOD(device_probe, gusc_probe),
@@ -676,4 +664,3 @@ static driver_t gusc_driver = {
* gusc can be attached to an isa bus.
*/
DRIVER_MODULE(gusc, isa, gusc_driver, gusc_devclass, 0, 0);
-#endif /* NISA > 0 */
OpenPOWER on IntegriCloud