diff options
| author | jakllsch <jakllsch@NetBSD.org> | 2022-01-28 14:02:45 +0000 |
|---|---|---|
| committer | jakllsch <jakllsch@NetBSD.org> | 2022-01-28 14:02:45 +0000 |
| commit | dcbaa805afd76f9e7b8cc2d505d9dc70524cfd99 (patch) | |
| tree | 8e893a2bbf1fe62eb3aa78263729bb654546b3da /sys/dev | |
| parent | 18e3a769564f14804015912661cf20d5fc3713cf (diff) | |
shut up GCC about possibly-uninit; some KNF
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/scsipi/scsiconf.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/sys/dev/scsipi/scsiconf.c b/sys/dev/scsipi/scsiconf.c index 609fb4115f6..c2b7cb0b081 100644 --- a/sys/dev/scsipi/scsiconf.c +++ b/sys/dev/scsipi/scsiconf.c @@ -1,4 +1,4 @@ -/* $NetBSD: scsiconf.c,v 1.294 2022/01/27 18:37:02 jakllsch Exp $ */ +/* $NetBSD: scsiconf.c,v 1.295 2022/01/28 14:02:45 jakllsch Exp $ */ /*- * Copyright (c) 1998, 1999, 2004 The NetBSD Foundation, Inc. @@ -48,7 +48,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: scsiconf.c,v 1.294 2022/01/27 18:37:02 jakllsch Exp $"); +__KERNEL_RCSID(0, "$NetBSD: scsiconf.c,v 1.295 2022/01/28 14:02:45 jakllsch Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -482,6 +482,8 @@ int scsi_probe_bus(struct scsibus_softc *sc, int target, int lun) { struct scsipi_channel *chan = sc->sc_channel; + uint16_t *luns; + size_t nluns = 0; /* XXXGCC */ int maxtarget, mintarget, maxlun, minlun; int error; @@ -509,9 +511,6 @@ scsi_probe_bus(struct scsibus_softc *sc, int target, int lun) */ scsipi_adapter_ioctl(chan, SCBUSIOLLSCAN, NULL, 0, curproc); - uint16_t *luns; - size_t nluns; - if ((error = scsipi_adapter_addref(chan->chan_adapter)) != 0) goto ret; for (target = mintarget; target <= maxtarget; target++) { |
