]> git.baikalelectronics.ru Git - kernel.git/commit
wifi: ath9k: use proper statements in conditionals
authorArnd Bergmann <arnd@arndb.de>
Thu, 15 Dec 2022 16:55:42 +0000 (17:55 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 11 Mar 2023 15:44:07 +0000 (16:44 +0100)
commita5c34c15ec6e8fce0f844dbdeee8e74a112934a1
treef6a6ca9dfe533e49a4a8d645e083bf832198867e
parent6b45bf187d877716e501a56eb303fa871b437536
wifi: ath9k: use proper statements in conditionals

commit f7af92b01e16665f4c8345434098484a80cc9a4c upstream.

A previous cleanup patch accidentally broke some conditional
expressions by replacing the safe "do {} while (0)" constructs
with empty macros. gcc points this out when extra warnings
are enabled:

drivers/net/wireless/ath/ath9k/hif_usb.c: In function 'ath9k_skb_queue_complete':
drivers/net/wireless/ath/ath9k/hif_usb.c:251:57: error: suggest braces around empty body in an 'else' statement [-Werror=empty-body]
  251 |                         TX_STAT_INC(hif_dev, skb_failed);

Make both sets of macros proper expressions again.

Fixes: 7f9e6dc7b39d ("ath9k: htc: clean up statistics macros")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Toke Høiland-Jørgensen <toke@toke.dk>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20221215165553.1950307-1-arnd@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/net/wireless/ath/ath9k/htc.h