Merge "qcacld-3.0: Fix clang warning implicit conversion enum type QDF_STATUS" into wlan-cld3.driver.lnx.2.0-dev

This commit is contained in:
CNSS_WLAN Service 2017-07-12 13:17:19 -07:00 committed by Gerrit - the friendly Code Review server
commit 8bb758bfb6

View File

@ -4622,8 +4622,10 @@ QDF_STATUS sme_wow_delete_pattern(tHalHandle hal,
if (eSIR_SUCCESS != ret_code) {
sme_err("Posting WMA_WOWL_DEL_BCAST_PTRN failed, reason: %X",
ret_code);
return QDF_STATUS_E_FAILURE;
}
return ret_code;
return QDF_STATUS_SUCCESS;
}
/**