svn commit: r318697 - head/sys/mips/atheros
Adrian Chadd
adrian at FreeBSD.org
Tue May 23 06:20:26 UTC 2017
Author: adrian
Date: Tue May 23 06:20:24 2017
New Revision: 318697
URL: https://svnweb.freebsd.org/changeset/base/318697
Log:
[ar71xx] remove dead code!
Modified:
head/sys/mips/atheros/ar71xx_fixup.c
Modified: head/sys/mips/atheros/ar71xx_fixup.c
==============================================================================
--- head/sys/mips/atheros/ar71xx_fixup.c Tue May 23 06:20:06 2017 (r318696)
+++ head/sys/mips/atheros/ar71xx_fixup.c Tue May 23 06:20:24 2017 (r318697)
@@ -110,43 +110,3 @@ ar71xx_pci_slot_create_eeprom_firmware(d
}
device_printf(dev, "device EEPROM '%s' registered\n", buf);
}
-
-#if 0
-static void
-ar71xx_pci_slot_fixup(device_t dev, u_int bus, u_int slot, u_int func)
-{
- long int flash_addr;
- char buf[64];
- int size;
-
- /*
- * Check whether the given slot has a hint to poke.
- */
- if (bootverbose)
- device_printf(dev, "%s: checking dev %s, %d/%d/%d\n",
- __func__, device_get_nameunit(dev), bus, slot, func);
-
- snprintf(buf, sizeof(buf), "bus.%d.%d.%d.ath_fixup_addr",
- bus, slot, func);
-
- if (resource_long_value(device_get_name(dev), device_get_unit(dev),
- buf, &flash_addr) == 0) {
- snprintf(buf, sizeof(buf), "bus.%d.%d.%d.ath_fixup_size",
- bus, slot, func);
- if (resource_int_value(device_get_name(dev),
- device_get_unit(dev), buf, &size) != 0) {
- device_printf(dev,
- "%s: missing hint '%s', aborting EEPROM\n",
- __func__, buf);
- return;
- }
-
-
- device_printf(dev, "found EEPROM at 0x%lx on %d.%d.%d\n",
- flash_addr, bus, slot, func);
- ar71xx_pci_fixup(dev, bus, slot, func, flash_addr, size);
- ar71xx_pci_slot_create_eeprom_firmware(dev, bus, slot, func,
- flash_addr, size);
- }
-}
-#endif /* 0 */
More information about the svn-src-head
mailing list