Selaa lähdekoodia

qcacld-3.0: Fix block comments in wlan_hdd_lro.c

A checkpatch run on the HDD component has produced numerous
warnings about improper block comments:
WARNING: Block comments use * on subsequent lines
WARNING: Block comments should align the * on each line
WARNING: Block comments use a trailing */ on a separate line

Fix all such warnings in wlan_hdd_lro.c.

Change-Id: Ib82ba48b675bfd074dd4f3e26e650921c04d3a4c
CRs-Fixed: 1110861
Jeff Johnson 8 vuotta sitten
vanhempi
sitoutus
c1b9a91aef
1 muutettua tiedostoa jossa 4 lisäystä ja 4 poistoa
  1. 4 4
      core/hdd/src/wlan_hdd_lro.c

+ 4 - 4
core/hdd/src/wlan_hdd_lro.c

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015-2016 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2015-2017 The Linux Foundation. All rights reserved.
  *
  * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  *
@@ -455,9 +455,9 @@ static void *hdd_init_lro_mgr(void)
 		return NULL;
 	}
 	/*
-	* Allocate all the LRO data structures at once and then carve
-	* them up as needed
-	*/
+	 * Allocate all the LRO data structures at once and then carve
+	 * them up as needed
+	 */
 	lro_info_sz = sizeof(struct hdd_lro_s);
 	lro_mgr_sz = sizeof(struct net_lro_mgr);
 	desc_arr_sz = (LRO_DESC_POOL_SZ * sizeof(struct net_lro_desc));