From e01b490c7ece060fc1ea1e6d3da399bd9fbe1108 Mon Sep 17 00:00:00 2001 From: jhb Date: Tue, 23 Jan 2001 22:18:07 +0000 Subject: - Move stg_card_intr()'s prototype and definition inside appropriate #ifdef's as it is is only used on older versions of FreeBSD. - #ifdef a local variable only used on older versions of FreeBSD. --- sys/dev/stg/tmc18c30_pccard.c | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) (limited to 'sys/dev/stg') diff --git a/sys/dev/stg/tmc18c30_pccard.c b/sys/dev/stg/tmc18c30_pccard.c index 7d05a67..7798b48 100644 --- a/sys/dev/stg/tmc18c30_pccard.c +++ b/sys/dev/stg/tmc18c30_pccard.c @@ -92,10 +92,10 @@ extern struct stg_softc *stgdata[]; static int stgprobe(DEVPORT_PDEVICE devi); static int stgattach(DEVPORT_PDEVICE devi); -static int stg_card_intr __P((DEVPORT_PDEVICE)); static void stg_card_unload __P((DEVPORT_PDEVICE)); #if defined(__FreeBSD__) && __FreeBSD_version < 400001 static int stg_card_init __P((DEVPORT_PDEVICE)); +static int stg_card_intr __P((DEVPORT_PDEVICE)); #endif #if defined(__FreeBSD__) && __FreeBSD_version >= 400001 @@ -301,6 +301,13 @@ stg_card_init(DEVPORT_PDEVICE devi) return (0); } + +static int +stg_card_intr(DEVPORT_PDEVICE devi) +{ + stgintr(DEVPORT_PDEVGET_SOFTC(devi)); + return 1; +} #endif static void @@ -314,13 +321,6 @@ stg_card_unload(DEVPORT_PDEVICE devi) } static int -stg_card_intr(DEVPORT_PDEVICE devi) -{ - stgintr(DEVPORT_PDEVGET_SOFTC(devi)); - return 1; -} - -static int stgprobe(DEVPORT_PDEVICE devi) { int rv; @@ -341,7 +341,9 @@ stgprobe(DEVPORT_PDEVICE devi) static int stgattach(DEVPORT_PDEVICE devi) { +#if defined(__FreeBSD__) && __FreeBSD_version < 400001 int unit = DEVPORT_PDEVUNIT(devi); +#endif struct stg_softc *sc; struct scsi_low_softc *slp; u_int32_t flags = DEVPORT_PDEVFLAGS(devi); -- cgit v1.1