diff options
| author | Mahesh Kumar Kalikot Veetil <mkalikot@codeaurora.org> | 2016-09-14 15:15:49 -0700 |
|---|---|---|
| committer | qcabuildsw <qcabuildsw@localhost> | 2016-09-15 21:04:44 -0700 |
| commit | d214d55b6e4953fd751ab668eaa89cfa12e63506 (patch) | |
| tree | db3e2c9599a83e8e1f9d51ee52316e75b5330bb6 | |
| parent | 0641e379744a5a031644e33422b4189b825f3cec (diff) | |
qcacld-3.0: Fix a compilation error in wlan_hdd_auto_shutdown_cb()
Fix a compilation when FEATURE_WLAN_AUTO_SHUTDOWN is enabled
Change-Id: Ib3b4c48a32482dc3175b02e8c7180d8ced976239
CRs-Fixed: 1067109
| -rw-r--r-- | core/hdd/src/wlan_hdd_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/hdd/src/wlan_hdd_main.c b/core/hdd/src/wlan_hdd_main.c index 7ded4a8104b3..e37eb7261942 100644 --- a/core/hdd/src/wlan_hdd_main.c +++ b/core/hdd/src/wlan_hdd_main.c @@ -8134,7 +8134,7 @@ void wlan_hdd_send_svc_nlink_msg(int radio, int type, void *data, int len) #ifdef FEATURE_WLAN_AUTO_SHUTDOWN void wlan_hdd_auto_shutdown_cb(void) { - hdd_context_t *hdd_ctx = cdf_get_global_context(); + hdd_context_t *hdd_ctx = cds_get_global_context(); if (!hdd_ctx) return; |
