Browse Source

qcacld-3.0: Fix name of Roam Scan time

Currently Roam Scan time is misspelled as Raom in roam_stats debugfs,
fix with proper spell.

Change-Id: I7d5d889da1e168990f44ce609273812a7ba4ec3e
CRs-Fixed: 2445715
Rajeev Kumar Sirasanagandla 6 years ago
parent
commit
b89a61f8e2
1 changed files with 2 additions and 2 deletions
  1. 2 2
      core/hdd/src/wlan_hdd_debugfs_roam.c

+ 2 - 2
core/hdd/src/wlan_hdd_debugfs_roam.c

@@ -460,8 +460,8 @@ wlan_hdd_update_roam_stats(struct hdd_context *hdd_ctx,
 		}
 
 		ret = scnprintf(buf + length, buf_avail_len - length,
-			"\nRaom Scan time: 0x%llx\n",
-			roam_stats->roam_scan[rsi].time_stamp);
+				"\nRoam Scan time: 0x%llx\n",
+				roam_stats->roam_scan[rsi].time_stamp);
 		if (ret <= 0)
 			goto free_mem;
 		length += ret;