wifi: ath6kl: return 0 explicitly in ath6kl_init_upload()

status is always zero at the last return in ath6kl_init_upload().
Explicitly return 0 on the success path instead of returning status.

No functional change.

Signed-off-by: Sang-Heon Jeon <ekffu200098@gmail.com>
Link: https://patch.msgid.link/20260729160458.201962-1-ekffu200098@gmail.com
Signed-off-by: Jeff Johnson <jeff.johnson@oss.qualcomm.com>
This commit is contained in:
Sang-Heon Jeon 2026-07-30 01:04:56 +09:00 committed by Jeff Johnson
parent 7a246c7213
commit 8b8202b2e3

View File

@ -1570,7 +1570,7 @@ static int ath6kl_init_upload(struct ath6kl *ar)
if (status)
return status;
return status;
return 0;
}
int ath6kl_init_hw_params(struct ath6kl *ar)