Staging: v56655: add missing parentheses (in comment)
authorRoel Kluin <roel.kluin@gmail.com>
Wed, 6 Jan 2010 22:27:47 +0000 (23:27 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 4 Mar 2010 00:42:40 +0000 (16:42 -0800)
`!' has a higher precedence than `&' so parentheses are required.

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/vt6655/iwctl.c

index 108830f..78b4983 100644 (file)
@@ -1472,7 +1472,7 @@ if((wrq->flags & IW_ENCODE_DISABLED)==0){
                if ( index < 4 ) {
                    pDevice->byKeyIndex = index;
                }
-               else if(!wrq->flags & IW_ENCODE_MODE) {
+               else if(!(wrq->flags & IW_ENCODE_MODE)) {
                                rc = -EINVAL;
                                return rc;
            }