Date: Mon, 13 Oct 2014 16:23:52 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r273050 - head/sys/dev/sdhci Message-ID: <201410131623.s9DGNqhH032225@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: imp Date: Mon Oct 13 16:23:51 2014 New Revision: 273050 URL: https://svnweb.freebsd.org/changeset/base/273050 Log: class, subclass and progif were never used, so don't bother setting them. Modified: head/sys/dev/sdhci/sdhci_pci.c Modified: head/sys/dev/sdhci/sdhci_pci.c ============================================================================== --- head/sys/dev/sdhci/sdhci_pci.c Mon Oct 13 16:20:04 2014 (r273049) +++ head/sys/dev/sdhci/sdhci_pci.c Mon Oct 13 16:23:51 2014 (r273050) @@ -260,16 +260,12 @@ sdhci_pci_attach(device_t dev) struct sdhci_pci_softc *sc = device_get_softc(dev); uint32_t model; uint16_t subvendor; - uint8_t class, subclass, progif; int bar, err, rid, slots, i; sc->dev = dev; model = (uint32_t)pci_get_device(dev) << 16; model |= (uint32_t)pci_get_vendor(dev) & 0x0000ffff; subvendor = pci_get_subvendor(dev); - class = pci_get_class(dev); - subclass = pci_get_subclass(dev); - progif = pci_get_progif(dev); /* Apply chip specific quirks. */ for (i = 0; sdhci_devices[i].model != 0; i++) { if (sdhci_devices[i].model == model &&
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201410131623.s9DGNqhH032225>