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
This commit is contained in:
Rajeev Kumar Sirasanagandla 2019-05-03 20:57:33 +05:30 committed by nshrivas
parent 1e124f7f83
commit b89a61f8e2

View File

@ -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;