git: b146a9c34084 - stable/13 - bce(4): Fix a typo in a kernel message
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 25 Jan 2024 06:53:05 UTC
The branch stable/13 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=b146a9c34084787ab16a12ab6d2b4c10df25a6d9 commit b146a9c34084787ab16a12ab6d2b4c10df25a6d9 Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2024-01-20 19:10:21 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2024-01-25 06:51:19 +0000 bce(4): Fix a typo in a kernel message - s/adddress/address/ (cherry picked from commit e1c0d368d630cce01691e1967ada9f36d6b8c751) --- sys/dev/bce/if_bce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/dev/bce/if_bce.c b/sys/dev/bce/if_bce.c index cafb4940b440..322ab8328080 100644 --- a/sys/dev/bce/if_bce.c +++ b/sys/dev/bce/if_bce.c @@ -10663,7 +10663,7 @@ bce_dump_driver_state(struct bce_softc *sc) val_hi = BCE_ADDR_HI(sc->tx_bd_chain); val_lo = BCE_ADDR_LO(sc->tx_bd_chain); BCE_PRINTF("0x%08X:%08X - (sc->tx_bd_chain) tx_bd chain " - "virtual adddress\n", val_hi, val_lo); + "virtual address\n", val_hi, val_lo); val_hi = BCE_ADDR_HI(sc->rx_bd_chain); val_lo = BCE_ADDR_LO(sc->rx_bd_chain);