[PATCH] staging: rtl8712: Fix spelling mistake in rtl8712_xmit.c

Roshan Khatri posted 1 patch 1 year, 8 months ago
drivers/staging/rtl8712/rtl8712_xmit.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] staging: rtl8712: Fix spelling mistake in rtl8712_xmit.c
Posted by Roshan Khatri 1 year, 8 months ago
codespell reported misspelled aggregation in rtl8712_xmit.c. This patch
corrects the spelling to increase code readability and searching.

Signed-off-by: Roshan Khatri <topofeverest8848@gmail.com>
---
 drivers/staging/rtl8712/rtl8712_xmit.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/rtl8712/rtl8712_xmit.c b/drivers/staging/rtl8712/rtl8712_xmit.c
index d7d678b04ca8..12f2fdb1b3cb 100644
--- a/drivers/staging/rtl8712/rtl8712_xmit.c
+++ b/drivers/staging/rtl8712/rtl8712_xmit.c
@@ -247,7 +247,7 @@ void r8712_construct_txaggr_cmd_desc(struct xmit_buf *pxmitbuf)
 {
 	struct tx_desc *ptx_desc = (struct tx_desc *)pxmitbuf->pbuf;
 
-	/* Fill up TxCmd Descriptor according as USB FW Tx Aaggregation info.*/
+	/* Fill up TxCmd Descriptor according as USB FW Tx Aggregation info.*/
 	/* dw0 */
 	ptx_desc->txdw0 = cpu_to_le32(CMD_HDR_SZ & 0xffff);
 	ptx_desc->txdw0 |=
-- 
2.34.1
Re: [PATCH] staging: rtl8712: Fix spelling mistake in rtl8712_xmit.c
Posted by Philipp Hortmann 1 year, 8 months ago
On 5/21/24 16:36, Roshan Khatri wrote:
> codespell reported misspelled aggregation in rtl8712_xmit.c. This patch
> corrects the spelling to increase code readability and searching.
> 
> Signed-off-by: Roshan Khatri <topofeverest8848@gmail.com>
> ---
>   drivers/staging/rtl8712/rtl8712_xmit.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/rtl8712/rtl8712_xmit.c b/drivers/staging/rtl8712/rtl8712_xmit.c
> index d7d678b04ca8..12f2fdb1b3cb 100644
> --- a/drivers/staging/rtl8712/rtl8712_xmit.c
> +++ b/drivers/staging/rtl8712/rtl8712_xmit.c
> @@ -247,7 +247,7 @@ void r8712_construct_txaggr_cmd_desc(struct xmit_buf *pxmitbuf)
>   {
>   	struct tx_desc *ptx_desc = (struct tx_desc *)pxmitbuf->pbuf;
>   
> -	/* Fill up TxCmd Descriptor according as USB FW Tx Aaggregation info.*/
> +	/* Fill up TxCmd Descriptor according as USB FW Tx Aggregation info.*/
>   	/* dw0 */
>   	ptx_desc->txdw0 = cpu_to_le32(CMD_HDR_SZ & 0xffff);
>   	ptx_desc->txdw0 |=

Tested-by: Philipp Hortmann <philipp.g.hortmann@gmail.com>