diff options
| author | ykla <yklaxds@gmail.com> | 2025-11-26 09:02:25 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2025-11-27 06:19:26 +0000 |
| commit | 8cbe0dd5097fbcbfbfbba50b016ec48352892ca7 (patch) | |
| tree | 99c224781925f80a5e05ab3142ad41de4e7f0f18 /sys/dev/usb | |
| parent | 5fd8a01e9b7c0fcf3ac0bab5cd137c9bbdda3341 (diff) | |
Diffstat (limited to 'sys/dev/usb')
| -rw-r--r-- | sys/dev/usb/net/if_axe.c | 2 | ||||
| -rw-r--r-- | sys/dev/usb/net/if_rue.c | 2 | ||||
| -rw-r--r-- | sys/dev/usb/net/ruephy.c | 8 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/usb/net/if_axe.c b/sys/dev/usb/net/if_axe.c index 117a3daa170f..38690931c13e 100644 --- a/sys/dev/usb/net/if_axe.c +++ b/sys/dev/usb/net/if_axe.c @@ -49,7 +49,7 @@ /* * The AX88172 provides USB ethernet supports at 10 and 100Mbps. - * It uses an external PHY (reference designs use a RealTek chip), + * It uses an external PHY (reference designs use a Realtek chip), * and has a 64-bit multicast hash filter. There is some information * missing from the manual which one needs to know in order to make * the chip function: diff --git a/sys/dev/usb/net/if_rue.c b/sys/dev/usb/net/if_rue.c index d1b46887cd20..37512d902b4f 100644 --- a/sys/dev/usb/net/if_rue.c +++ b/sys/dev/usb/net/if_rue.c @@ -59,7 +59,7 @@ */ /* - * RealTek RTL8150 USB to fast ethernet controller driver. + * Realtek RTL8150 USB to fast ethernet controller driver. * Datasheet is available from * ftp://ftp.realtek.com.tw/lancard/data_sheet/8150/. */ diff --git a/sys/dev/usb/net/ruephy.c b/sys/dev/usb/net/ruephy.c index 2b5358ab8d0c..8f46fb75c1c5 100644 --- a/sys/dev/usb/net/ruephy.c +++ b/sys/dev/usb/net/ruephy.c @@ -28,7 +28,7 @@ */ /* - * driver for RealTek RTL8150 internal PHY + * driver for Realtek RTL8150 internal PHY */ #include <sys/param.h> @@ -76,11 +76,11 @@ static void ruephy_reset(struct mii_softc *); static void ruephy_status(struct mii_softc *); /* - * The RealTek RTL8150 internal PHY doesn't have vendor/device ID + * The Realtek RTL8150 internal PHY doesn't have vendor/device ID * registers; rue(4) fakes up a return value of all zeros. */ static const struct mii_phydesc ruephys[] = { - { 0, 0, "RealTek RTL8150 internal media interface" }, + { 0, 0, "Realtek RTL8150 internal media interface" }, MII_PHY_END }; @@ -167,7 +167,7 @@ ruephy_reset(struct mii_softc *sc) mii_phy_reset(sc); /* - * XXX RealTek RTL8150 PHY doesn't set the BMCR properly after + * XXX Realtek RTL8150 PHY doesn't set the BMCR properly after * XXX reset, which breaks autonegotiation. */ PHY_WRITE(sc, MII_BMCR, (BMCR_S100 | BMCR_AUTOEN | BMCR_FDX)); |
