Staging: rtl8192u: ieee80211: Fix spelling mistake
authorPuranjay Mohan <puranjay12@gmail.com>
Tue, 14 May 2019 17:30:20 +0000 (23:00 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 20 May 2019 05:40:41 +0000 (07:40 +0200)
Correct spelling mistakes at two places in comments.

Signed-off-by: Puranjay Mohan <puranjay12@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192u/ieee80211/ieee80211_rx.c

index 1ab10d8..a4477b8 100644 (file)
@@ -557,7 +557,7 @@ void ieee80211_indicate_packets(struct ieee80211_device *ieee, struct ieee80211_
                        //stats->rx_packets++;
                        //stats->rx_bytes += sub_skb->len;
 
-               /* Indicat the packets to upper layer */
+               /* Indicate the packets to upper layer */
                        if (sub_skb) {
                                sub_skb->protocol = eth_type_trans(sub_skb, ieee->dev);
                                memset(sub_skb->cb, 0, sizeof(sub_skb->cb));
@@ -1311,7 +1311,7 @@ int ieee80211_rx(struct ieee80211_device *ieee, struct sk_buff *skb,
                                        stats->multicast++;
                                }
 
-                               /* Indicat the packets to upper layer */
+                               /* Indicate the packets to upper layer */
                                sub_skb->protocol = eth_type_trans(sub_skb, dev);
                                memset(sub_skb->cb, 0, sizeof(sub_skb->cb));
                                sub_skb->dev = dev;