airo warning fix

WARNING: space prohibited between function name and open parenthesis '('
#22: FILE: drivers/net/wireless/airo.c:2907:
+ while ((IN4500 (ai, COMMAND) & COMMAND_BUSY) && (delay < 10000)) {

total: 0 errors, 1 warnings, 8 lines checked

./patches/wireless-airo-waitbusy-wont-delay.patch has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.

Please run checkpatch prior to sending patches

Cc: Dan Williams <dcbw@redhat.com>
Cc: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: John W. Linville <linville@tuxdriver.com>

authored by Andrew Morton and committed by John W. Linville b212f337 48e6c51b

+1 -1
+1 -1
drivers/net/wireless/airo.c
··· 2905 2905 2906 2906 static int waitbusy (struct airo_info *ai) { 2907 2907 int delay = 0; 2908 - while ((IN4500 (ai, COMMAND) & COMMAND_BUSY) && (delay < 10000)) { 2908 + while ((IN4500(ai, COMMAND) & COMMAND_BUSY) && (delay < 10000)) { 2909 2909 udelay (10); 2910 2910 if ((++delay % 20) == 0) 2911 2911 OUT4500(ai, EVACK, EV_CLEARCOMMANDBUSY);