The branch stable/15 has been updated by gbe:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=7751fc7bc733dc2776b0ab0a54f0d96429c8d387

commit 7751fc7bc733dc2776b0ab0a54f0d96429c8d387
Author:     Gordon Bergling <[email protected]>
AuthorDate: 2025-10-29 15:08:31 +0000
Commit:     Gordon Bergling <[email protected]>
CommitDate: 2025-11-08 20:14:49 +0000

    usb(4): Fix typos in upgt(4) and zyd(4)
    
    - s/frequence/frequency/
    - s/finsihed/finished/
    
    (cherry picked from commit 679976d8162004f879a1a0d5ca0c5d2ade5fa1bd)
---
 sys/dev/usb/wlan/if_upgt.c | 6 +++---
 sys/dev/usb/wlan/if_zyd.c  | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys/dev/usb/wlan/if_upgt.c b/sys/dev/usb/wlan/if_upgt.c
index 642631ae34b7..cf87d4ed09ed 100644
--- a/sys/dev/usb/wlan/if_upgt.c
+++ b/sys/dev/usb/wlan/if_upgt.c
@@ -1172,7 +1172,7 @@ upgt_eeprom_parse_freq3(struct upgt_softc *sc, uint8_t 
*data, int len)
 
                sc->sc_eeprom_freq3[channel] = freq3[i];
 
-               DPRINTF(sc, UPGT_DEBUG_FW, "frequence=%d, channel=%d\n",
+               DPRINTF(sc, UPGT_DEBUG_FW, "frequency=%d, channel=%d\n",
                    le16toh(sc->sc_eeprom_freq3[channel].freq), channel);
        }
 }
@@ -1214,7 +1214,7 @@ upgt_eeprom_parse_freq4(struct upgt_softc *sc, uint8_t 
*data, int len)
                        sc->sc_eeprom_freq4[channel][j].pad = 0;
                }
 
-               DPRINTF(sc, UPGT_DEBUG_FW, "frequence=%d, channel=%d\n",
+               DPRINTF(sc, UPGT_DEBUG_FW, "frequency=%d, channel=%d\n",
                    le16toh(freq4_1[i].freq), channel);
        }
 }
@@ -1242,7 +1242,7 @@ upgt_eeprom_parse_freq6(struct upgt_softc *sc, uint8_t 
*data, int len)
 
                sc->sc_eeprom_freq6[channel] = freq6[i];
 
-               DPRINTF(sc, UPGT_DEBUG_FW, "frequence=%d, channel=%d\n",
+               DPRINTF(sc, UPGT_DEBUG_FW, "frequency=%d, channel=%d\n",
                    le16toh(sc->sc_eeprom_freq6[channel].freq), channel);
        }
 }
diff --git a/sys/dev/usb/wlan/if_zyd.c b/sys/dev/usb/wlan/if_zyd.c
index 1a698caef3c5..8c5d6f370260 100644
--- a/sys/dev/usb/wlan/if_zyd.c
+++ b/sys/dev/usb/wlan/if_zyd.c
@@ -825,7 +825,7 @@ zyd_cmd(struct zyd_softc *sc, uint16_t code, const void 
*idata, int ilen,
        if (error)
                device_printf(sc->sc_dev, "command timeout\n");
        STAILQ_REMOVE(&sc->sc_rqh, &rq, zyd_rq, rq);
-       DPRINTF(sc, ZYD_DEBUG_CMD, "finsihed cmd %p, error = %d \n",
+       DPRINTF(sc, ZYD_DEBUG_CMD, "finished cmd %p, error = %d \n",
            &rq, error);
 
        return (error);

Reply via email to