No need to check for chip type here.

This commit is contained in:
Warner Losh 2009-04-10 15:18:03 +00:00
parent a2910806e5
commit f5456b5d2c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=190897

View File

@ -512,7 +512,7 @@ ed_pccard_attach(device_t dev)
*/
for (i = 0, sum = 0; i < ETHER_ADDR_LEN; i++)
sum |= sc->enaddr[i];
if (sc->chip_type == ED_CHIP_TYPE_DP8390 && sum == 0) {
if (sum == 0) {
pccard_get_ether(dev, enaddr);
if (bootverbose)
device_printf(dev, "CIS MAC %6D\n", enaddr, ":");