diff options
| author | Marius Strobl <marius@FreeBSD.org> | 2006-06-05 15:14:14 +0000 |
|---|---|---|
| committer | Marius Strobl <marius@FreeBSD.org> | 2006-06-05 15:14:14 +0000 |
| commit | 3a225e0b62577bf6e0dddc366db640980e12c719 (patch) | |
| tree | 69e1164dcc089d37bda5f61bcb8450a8460b8588 /sys/dev/le | |
| parent | 3d5fa0356edbc4f37f4df2123a705e13ebd3e1e9 (diff) | |
Notes
Diffstat (limited to 'sys/dev/le')
| -rw-r--r-- | sys/dev/le/if_le_pci.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/sys/dev/le/if_le_pci.c b/sys/dev/le/if_le_pci.c index 89f8c0ab248e..1a3f162338ab 100644 --- a/sys/dev/le/if_le_pci.c +++ b/sys/dev/le/if_le_pci.c @@ -263,8 +263,16 @@ static void le_pci_hwreset(struct lance_softc *sc) { - /* Chip is stopped. Set software style to ILACC (32-bit). */ - le_pci_wrbcr(sc, LE_BCR20, LE_B20_SSTYLE_ILACC); + /* + * Chip is stopped. Set software style to PCnet-PCI (32-bit). + * Actually, am79900.c implements ILACC support (hence its + * name) but unfortunately VMware does not. As far as this + * driver is concerned that should not make a difference + * though, as the settings used have the same meaning for + * both, ILACC and PCnet-PCI (note that there would be a + * difference for the ADD_FCS/NO_FCS bit if used). + */ + le_pci_wrbcr(sc, LE_BCR20, LE_B20_SSTYLE_PCNETPCI2); } static void |
