netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH][next] net: axienet: Fix spelling mistake "archecture" -> "architecture"
@ 2022-06-14  6:46 Colin Ian King
  2022-06-14  7:06 ` Pandey, Radhey Shyam
  2022-06-16  0:38 ` Jakub Kicinski
  0 siblings, 2 replies; 3+ messages in thread
From: Colin Ian King @ 2022-06-14  6:46 UTC (permalink / raw)
  To: Radhey Shyam Pandey, David S . Miller, Eric Dumazet,
	Jakub Kicinski, Paolo Abeni, Michal Simek, netdev,
	linux-arm-kernel
  Cc: kernel-janitors, linux-kernel

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/ethernet/xilinx/xilinx_axienet_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
index fa7bcd2c1892..87a620073031 100644
--- a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
+++ b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
@@ -2038,7 +2038,7 @@ static int axienet_probe(struct platform_device *pdev)
 		}
 	}
 	if (!IS_ENABLED(CONFIG_64BIT) && lp->features & XAE_FEATURE_DMA_64BIT) {
-		dev_err(&pdev->dev, "64-bit addressable DMA is not compatible with 32-bit archecture\n");
+		dev_err(&pdev->dev, "64-bit addressable DMA is not compatible with 32-bit architecture\n");
 		goto cleanup_clk;
 	}
 
-- 
2.35.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* RE: [PATCH][next] net: axienet: Fix spelling mistake "archecture" -> "architecture"
  2022-06-14  6:46 [PATCH][next] net: axienet: Fix spelling mistake "archecture" -> "architecture" Colin Ian King
@ 2022-06-14  7:06 ` Pandey, Radhey Shyam
  2022-06-16  0:38 ` Jakub Kicinski
  1 sibling, 0 replies; 3+ messages in thread
From: Pandey, Radhey Shyam @ 2022-06-14  7:06 UTC (permalink / raw)
  To: Colin Ian King, Radhey Shyam Pandey, David S . Miller,
	Eric Dumazet, Jakub Kicinski, Paolo Abeni, Michal Simek, netdev,
	linux-arm-kernel
  Cc: kernel-janitors, linux-kernel

[AMD Official Use Only - General]

> -----Original Message-----
> From: Colin Ian King <colin.i.king@gmail.com>
> Sent: Tuesday, June 14, 2022 12:17 PM
> To: Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>; David S .
> Miller <davem@davemloft.net>; Eric Dumazet <edumazet@google.com>;
> Jakub Kicinski <kuba@kernel.org>; Paolo Abeni <pabeni@redhat.com>;
> Michal Simek <michal.simek@xilinx.com>; netdev@vger.kernel.org; linux-arm-
> kernel@lists.infradead.org
> Cc: kernel-janitors@vger.kernel.org; linux-kernel@vger.kernel.org
> Subject: [PATCH][next] net: axienet: Fix spelling mistake "archecture" ->
> "architecture"
>
> CAUTION: This message has originated from an External Source. Please use
> proper judgment and caution when opening attachments, clicking links, or
> responding to this email.
>
>
> 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: Radhey Shyam Pandey <radhey.shyam.pandey@amd.com>

> ---
>  drivers/net/ethernet/xilinx/xilinx_axienet_main.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
> b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
> index fa7bcd2c1892..87a620073031 100644
> --- a/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
> +++ b/drivers/net/ethernet/xilinx/xilinx_axienet_main.c
> @@ -2038,7 +2038,7 @@ static int axienet_probe(struct platform_device
> *pdev)
>                 }
>         }
>         if (!IS_ENABLED(CONFIG_64BIT) && lp->features &
> XAE_FEATURE_DMA_64BIT) {
> -               dev_err(&pdev->dev, "64-bit addressable DMA is not compatible with
> 32-bit archecture\n");
> +               dev_err(&pdev->dev, "64-bit addressable DMA is not compatible with
> 32-bit architecture\n");
>                 goto cleanup_clk;
>         }
>
> --
> 2.35.3


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH][next] net: axienet: Fix spelling mistake "archecture" -> "architecture"
  2022-06-14  6:46 [PATCH][next] net: axienet: Fix spelling mistake "archecture" -> "architecture" Colin Ian King
  2022-06-14  7:06 ` Pandey, Radhey Shyam
@ 2022-06-16  0:38 ` Jakub Kicinski
  1 sibling, 0 replies; 3+ messages in thread
From: Jakub Kicinski @ 2022-06-16  0:38 UTC (permalink / raw)
  To: Colin Ian King
  Cc: Radhey Shyam Pandey, David S . Miller, Eric Dumazet, Paolo Abeni,
	Michal Simek, netdev, linux-arm-kernel, kernel-janitors,
	linux-kernel

On Tue, 14 Jun 2022 07:46:47 +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>

Did not apply to net-next, please respin/

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-06-16  0:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-14  6:46 [PATCH][next] net: axienet: Fix spelling mistake "archecture" -> "architecture" Colin Ian King
2022-06-14  7:06 ` Pandey, Radhey Shyam
2022-06-16  0:38 ` Jakub Kicinski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).