ath6kl: fix compiler warning in ath6kl_init_hw_params()
authorKalle Valo <kvalo@qca.qualcomm.com>
Tue, 31 Jan 2012 19:26:22 +0000 (21:26 +0200)
committerKalle Valo <kvalo@qca.qualcomm.com>
Thu, 2 Feb 2012 08:13:06 +0000 (10:13 +0200)
commit1b46dc04866a4962644ef32d7398e34b40f7ac21
treea15a6f4b82ba0df61a1c2230a6683e8c7fec6cdd
parent3c325fbd0cdb4f83b7761cd8ba7519d7a236de38
ath6kl: fix compiler warning in ath6kl_init_hw_params()

Both Luis and John reported that they see a compiler warning:

drivers/net/wireless/ath/ath6kl/init.c: In function 'ath6kl_init_hw_params':
drivers/net/wireless/ath/ath6kl/init.c:1377:26: warning: ‘hw’
may be used uninitialized in this function

Oddly enough I have never seen it. But AFAICT the code is correct and
hw is not used uninitalized so add uninitialized_var() to inform that to
the compiler.

Reported-by: Luis R. Rodriguez <mcgrof@qca.qualcomm.com>
Reported-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: Kalle Valo <kvalo@qca.qualcomm.com>
drivers/net/wireless/ath/ath6kl/init.c