Re: [PATCH] Style Fix in __constant_test_bit for S390, remove one set of ( )

2006-02-03 Thread Leland Lucius
Hi Eric, If you want to do another pedantic patchie, check out these printk() s in fs/partitions/ibm.c: printk(CMS1/%8s(MDSK):, name); printk(CMS1/%8s:, name); printk(VOL1/%8s:, name); printk (LNX1/%8s:, name); printk((nonl)/%8s:, name); Mind you,

[PATCH] Style Fix in __constant_test_bit for S390, remove one set of ( )

2006-02-02 Thread Eric Paris
Right now in __constant_test_bit for the s390 there is an extra set of () surrounding the calculation. Putting it all on one line it could read like return (( ((volatile char *) addr) [(nr^(__BITOPS_WORDSIZE-8))3] (1(nr7)) )) != 0; This patch simply removes one set of () that is surrounding