Просмотр исходного кода

qcacld-3.0: Fix typo "neighbor_scan_max_chan_timee"

Change Id39629e33e87ffe6ed58f375609a55e324618693 ("qcacld-3.0: Apply
second part of LFR INIs changes in HDD layer") contains a typo
"neighbor_scan_max_chan_timee". Fix the typo so that the code will
build if DSRC is enabled.

Change-Id: I2a8d8f7f619f825d16fc892913fd409ee8a04c97
CRs-Fixed: 2376943
Jeff Johnson 6 лет назад
Родитель
Сommit
f187969fab
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      core/hdd/src/wlan_hdd_oemdata.c

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

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2012-2018 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2012-2019 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -94,7 +94,7 @@ static int populate_oem_data_cap(struct hdd_adapter *adapter,
 	ucfg_mlme_get_neighbor_scan_min_chan_time(psoc,
 						  &neighbor_scan_min_chan_time);
 	data_cap->allowed_dwell_time_min = neighbor_scan_min_chan_time;
-	data_cap->allowed_dwell_time_max = neighbor_scan_max_chan_timee;
+	data_cap->allowed_dwell_time_max = neighbor_scan_max_chan_time;
 	data_cap->curr_dwell_time_min =
 		sme_get_neighbor_scan_min_chan_time(hdd_ctx->mac_handle,
 						    adapter->session_id);