git: eac2a1edabae - stable/14 - axgbe: Fix two typos in source code comments
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 12 Aug 2024 12:51:17 UTC
The branch stable/14 has been updated by gbe: URL: https://cgit.FreeBSD.org/src/commit/?id=eac2a1edabae65e57bf66236bcbaf04d0c973b5e commit eac2a1edabae65e57bf66236bcbaf04d0c973b5e Author: Gordon Bergling <gbe@FreeBSD.org> AuthorDate: 2024-07-21 09:06:07 +0000 Commit: Gordon Bergling <gbe@FreeBSD.org> CommitDate: 2024-08-12 12:51:02 +0000 axgbe: Fix two typos in source code comments - s/specfied/specified/ (cherry picked from commit 619c9488a31ce14c6570d2e31f70d416382ed7a6) --- sys/dev/axgbe/xgbe-phy-v2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/dev/axgbe/xgbe-phy-v2.c b/sys/dev/axgbe/xgbe-phy-v2.c index 9a057c34c6c9..b7d27f633265 100644 --- a/sys/dev/axgbe/xgbe-phy-v2.c +++ b/sys/dev/axgbe/xgbe-phy-v2.c @@ -460,7 +460,7 @@ xgbe_phy_i2c_write(struct xgbe_prv_data *pdata, unsigned int target, void *val, retry = 1; again: - /* Write the specfied register */ + /* Write the specified register */ i2c_op.cmd = XGBE_I2C_CMD_WRITE; i2c_op.target = target; i2c_op.len = val_len; @@ -499,7 +499,7 @@ again1: retry = 1; again2: - /* Read the specfied register */ + /* Read the specified register */ i2c_op.cmd = XGBE_I2C_CMD_READ; i2c_op.target = target; i2c_op.len = val_len;