]> Pileus Git - ~andy/linux/commit
Staging: bcm: Change the style of comparing structures to null in InterfaceMisc.c.
authorKevin McKinney <klmckinney1@gmail.com>
Sat, 13 Oct 2012 03:49:33 +0000 (23:49 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 19 Oct 2012 20:42:23 +0000 (13:42 -0700)
commitde3615f46cc5892a82f18324e62ec2c5c99e959f
tree0dbc0e4923b13cf8c66a1a7c0623be8e9bce0a76
parent5f997ee89a33f664e18222d6ab9bfbf242c31dd5
Staging: bcm: Change the style of comparing structures to null in InterfaceMisc.c.

This patch changes the style of comparing
structures to null. Instead of this:
"if (foo == NULL) {" or "if (foo != NULL) {",
the new logic uses: "if (!foo) {" or
"if (foo) {".

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/bcm/InterfaceMisc.c