diff options
author | 2005-11-25 01:28:00 +0000 | |
---|---|---|
committer | 2005-11-25 01:28:00 +0000 | |
commit | b4cc6a8e214df17b8360910843f7e87838726b03 (patch) | |
tree | 2c28b4a7a62a3e605f29c8c8d0f9f78b7e9a4b3e | |
parent | use 5780 here instead of 5714. (diff) | |
download | wireguard-openbsd-b4cc6a8e214df17b8360910843f7e87838726b03.tar.xz wireguard-openbsd-b4cc6a8e214df17b8360910843f7e87838726b03.zip |
load the 5750 DSP code on the 5705 PHY too.
Based on Broadcom's Linux driver.
-rw-r--r-- | sys/dev/mii/brgphy.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/mii/brgphy.c b/sys/dev/mii/brgphy.c index 6b9911e65c4..94cf655816e 100644 --- a/sys/dev/mii/brgphy.c +++ b/sys/dev/mii/brgphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: brgphy.c,v 1.43 2005/11/20 01:36:43 brad Exp $ */ +/* $OpenBSD: brgphy.c,v 1.44 2005/11/25 01:28:00 brad Exp $ */ /* * Copyright (c) 2000 @@ -684,8 +684,7 @@ brgphy_load_dspcode(struct mii_softc *sc) case MII_MODEL_xxBROADCOM_BCM5704: brgphy_bcm5704_dspcode(sc); break; - case MII_MODEL_xxBROADCOM_BCM5714: - case MII_MODEL_xxBROADCOM_BCM5715: + case MII_MODEL_xxBROADCOM_BCM5705: case MII_MODEL_xxBROADCOM_BCM5750: case MII_MODEL_xxBROADCOM_BCM5752: brgphy_bcm5750_dspcode(sc); |