rtw88: use rtw_hci_stop() instead of rtwdev->hci.ops->stop()

Fix typo, should use rtw_hci_stop()

Signed-off-by: Chin-Yen Lee <timlee@realtek.com>
Signed-off-by: Yan-Hsuan Chuang <yhchuang@realtek.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
This commit is contained in:
Chin-Yen Lee 2019-12-20 17:21:54 +08:00 committed by Kalle Valo
parent 65ae64d375
commit fc83c616d4

View File

@ -898,7 +898,7 @@ int rtw_core_start(struct rtw_dev *rtwdev)
static void rtw_power_off(struct rtw_dev *rtwdev)
{
rtwdev->hci.ops->stop(rtwdev);
rtw_hci_stop(rtwdev);
rtw_mac_power_off(rtwdev);
}