Message ID | 20240509065023.3033397-1-colin.i.king@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 089507a67921b400b68c25edbeaf76a6eae8b00a |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [next] net: dsa: microchip: Fix spellig mistake "configur" -> "configure" | expand |
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>
Hello: This patch was applied to netdev/net-next.git (main) by Jakub Kicinski <kuba@kernel.org>: On Thu, 9 May 2024 07:50:23 +0100 you wrote: > 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(-) Here is the summary with links: - [next] net: dsa: microchip: Fix spellig mistake "configur" -> "configure" https://git.kernel.org/netdev/net-next/c/089507a67921 You are awesome, thank you!
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; } }
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(-)