Remove unused variable defined with an unexisting type.
authormpi <mpi@openbsd.org>
Tue, 12 Dec 2017 11:18:32 +0000 (11:18 +0000)
committermpi <mpi@openbsd.org>
Tue, 12 Dec 2017 11:18:32 +0000 (11:18 +0000)
Found with ctfconv(1).

ok jsg@, dlg@

sys/dev/pci/mpii.c

index 99b6edd..c1f523a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mpii.c,v 1.112 2017/08/10 15:01:42 mikeb Exp $        */
+/*     $OpenBSD: mpii.c,v 1.113 2017/12/12 11:18:32 mpi Exp $  */
 /*
  * Copyright (c) 2010, 2012 Mike Belopuhov
  * Copyright (c) 2009 James Giannoules
@@ -1567,7 +1567,6 @@ int
 mpii_portenable(struct mpii_softc *sc)
 {
        struct mpii_msg_portenable_request      *peq;
-       struct mpii_msg_portenable_repy         *pep;
        struct mpii_ccb                         *ccb;
 
        DNPRINTF(MPII_D_MISC, "%s: mpii_portenable\n", DEVNAME(sc));
@@ -1596,7 +1595,6 @@ mpii_portenable(struct mpii_softc *sc)
                    DEVNAME(sc));
                return (1);
        }
-       pep = ccb->ccb_rcb->rcb_reply;
 
        mpii_push_reply(sc, ccb->ccb_rcb);
        scsi_io_put(&sc->sc_iopool, ccb);