netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: bfin_mac: Fix a few spelling fixes
@ 2016-08-12 12:58 LABBE Corentin
  2016-08-13 21:54 ` Randy Dunlap
  2016-08-13 22:15 ` David Miller
  0 siblings, 2 replies; 3+ messages in thread
From: LABBE Corentin @ 2016-08-12 12:58 UTC (permalink / raw)
  To: davem, andrew, tremyfr, sudipm.mukherjee, a, treding, linux
  Cc: adi-buildroot-devel, netdev, linux-kernel, LABBE Corentin

This patch respell some word badly spelled.
- Invidate instead of Invalidate
- proble instead of probe

Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com>
---
 drivers/net/ethernet/adi/bfin_mac.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/net/ethernet/adi/bfin_mac.c b/drivers/net/ethernet/adi/bfin_mac.c
index 38eaea1..00f9ee3 100644
--- a/drivers/net/ethernet/adi/bfin_mac.c
+++ b/drivers/net/ethernet/adi/bfin_mac.c
@@ -192,8 +192,8 @@ static int desc_list_init(struct net_device *dev)
 			goto init_error;
 
 		skb_reserve(new_skb, NET_IP_ALIGN);
-		/* Invidate the data cache of skb->data range when it is write back
-		 * cache. It will prevent overwritting the new data from DMA
+		/* Invalidate the data cache of skb->data range when it is write back
+		 * cache. It will prevent overwriting the new data from DMA
 		 */
 		blackfin_dcache_invalidate_range((unsigned long)new_skb->head,
 					 (unsigned long)new_skb->end);
@@ -1205,7 +1205,7 @@ static void bfin_mac_rx(struct bfin_mac_local *lp)
 	}
 	/* reserve 2 bytes for RXDWA padding */
 	skb_reserve(new_skb, NET_IP_ALIGN);
-	/* Invidate the data cache of skb->data range when it is write back
+	/* Invalidate the data cache of skb->data range when it is write back
 	 * cache. It will prevent overwritting the new data from DMA
 	 */
 	blackfin_dcache_invalidate_range((unsigned long)new_skb->head,
@@ -1599,7 +1599,7 @@ static int bfin_mac_probe(struct platform_device *pdev)
 	*(__le16 *) (&(ndev->dev_addr[4])) = cpu_to_le16((u16) bfin_read_EMAC_ADDRHI());
 
 	/* probe mac */
-	/*todo: how to proble? which is revision_register */
+	/*todo: how to probe? which is revision_register */
 	bfin_write_EMAC_ADDRLO(0x12345678);
 	if (bfin_read_EMAC_ADDRLO() != 0x12345678) {
 		dev_err(&pdev->dev, "Cannot detect Blackfin on-chip ethernet MAC controller!\n");
-- 
2.7.3

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

* Re: [PATCH] net: bfin_mac: Fix a few spelling fixes
  2016-08-12 12:58 [PATCH] net: bfin_mac: Fix a few spelling fixes LABBE Corentin
@ 2016-08-13 21:54 ` Randy Dunlap
  2016-08-13 22:15 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: Randy Dunlap @ 2016-08-13 21:54 UTC (permalink / raw)
  To: LABBE Corentin, davem, andrew, tremyfr, sudipm.mukherjee, a,
	treding, linux
  Cc: adi-buildroot-devel, netdev, linux-kernel

On 08/12/16 05:58, LABBE Corentin wrote:
> This patch respell some word badly spelled.
> - Invidate instead of Invalidate
> - proble instead of probe
> 
> Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com>
> ---
>  drivers/net/ethernet/adi/bfin_mac.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/net/ethernet/adi/bfin_mac.c b/drivers/net/ethernet/adi/bfin_mac.c
> index 38eaea1..00f9ee3 100644
> --- a/drivers/net/ethernet/adi/bfin_mac.c
> +++ b/drivers/net/ethernet/adi/bfin_mac.c
> @@ -192,8 +192,8 @@ static int desc_list_init(struct net_device *dev)
>  			goto init_error;
>  
>  		skb_reserve(new_skb, NET_IP_ALIGN);
> -		/* Invidate the data cache of skb->data range when it is write back
> -		 * cache. It will prevent overwritting the new data from DMA
> +		/* Invalidate the data cache of skb->data range when it is write back
> +		 * cache. It will prevent overwriting the new data from DMA
>  		 */
>  		blackfin_dcache_invalidate_range((unsigned long)new_skb->head,
>  					 (unsigned long)new_skb->end);
> @@ -1205,7 +1205,7 @@ static void bfin_mac_rx(struct bfin_mac_local *lp)
>  	}
>  	/* reserve 2 bytes for RXDWA padding */
>  	skb_reserve(new_skb, NET_IP_ALIGN);
> -	/* Invidate the data cache of skb->data range when it is write back
> +	/* Invalidate the data cache of skb->data range when it is write back
>  	 * cache. It will prevent overwritting the new data from DMA

	                          overwriting

>  	 */
>  	blackfin_dcache_invalidate_range((unsigned long)new_skb->head,
> @@ -1599,7 +1599,7 @@ static int bfin_mac_probe(struct platform_device *pdev)
>  	*(__le16 *) (&(ndev->dev_addr[4])) = cpu_to_le16((u16) bfin_read_EMAC_ADDRHI());
>  
>  	/* probe mac */
> -	/*todo: how to proble? which is revision_register */
> +	/*todo: how to probe? which is revision_register */
>  	bfin_write_EMAC_ADDRLO(0x12345678);
>  	if (bfin_read_EMAC_ADDRLO() != 0x12345678) {
>  		dev_err(&pdev->dev, "Cannot detect Blackfin on-chip ethernet MAC controller!\n");
> 


-- 
~Randy

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

* Re: [PATCH] net: bfin_mac: Fix a few spelling fixes
  2016-08-12 12:58 [PATCH] net: bfin_mac: Fix a few spelling fixes LABBE Corentin
  2016-08-13 21:54 ` Randy Dunlap
@ 2016-08-13 22:15 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2016-08-13 22:15 UTC (permalink / raw)
  To: clabbe.montjoie
  Cc: andrew, tremyfr, sudipm.mukherjee, a, treding, linux,
	adi-buildroot-devel, netdev, linux-kernel

From: LABBE Corentin <clabbe.montjoie@gmail.com>
Date: Fri, 12 Aug 2016 14:58:02 +0200

> This patch respell some word badly spelled.
> - Invidate instead of Invalidate
> - proble instead of probe
> 
> Signed-off-by: LABBE Corentin <clabbe.montjoie@gmail.com>

Applied.

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

end of thread, other threads:[~2016-08-13 22:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-12 12:58 [PATCH] net: bfin_mac: Fix a few spelling fixes LABBE Corentin
2016-08-13 21:54 ` Randy Dunlap
2016-08-13 22:15 ` David Miller

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).