[PATCH][next] net: dsa: microchip: Fix spellig mistake "configur" -> "configure"

Colin Ian King posted 1 patch 1 year, 7 months ago
drivers/net/dsa/microchip/ksz_dcb.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH][next] net: dsa: microchip: Fix spellig mistake "configur" -> "configure"
Posted by Colin Ian King 1 year, 7 months ago
There is a spelling mistake in a dev_err message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/net/dsa/microchip/ksz_dcb.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/dsa/microchip/ksz_dcb.c b/drivers/net/dsa/microchip/ksz_dcb.c
index 5e520c02afd7..484945a9c5fb 100644
--- a/drivers/net/dsa/microchip/ksz_dcb.c
+++ b/drivers/net/dsa/microchip/ksz_dcb.c
@@ -220,7 +220,7 @@ static int ksz88x3_port_set_default_prio_quirks(struct ksz_device *dev, int port
 			return ret;
 
 		if (!(port2_data & KSZ8_PORT_802_1P_ENABLE)) {
-			dev_err(dev->dev, "Not possible to configur port priority on Port 1 if PCP apptrust on Port 2 is disabled\n");
+			dev_err(dev->dev, "Not possible to configure port priority on Port 1 if PCP apptrust on Port 2 is disabled\n");
 			return -EINVAL;
 		}
 	}
-- 
2.39.2
Re: [PATCH][next] net: dsa: microchip: Fix spellig mistake "configur" -> "configure"
Posted by Simon Horman 1 year, 7 months ago
On Thu, May 09, 2024 at 07:50:23AM +0100, Colin Ian King wrote:
> There is a spelling mistake in a dev_err message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Reviewed-by: Simon Horman <horms@kernel.org>