Staging: bcm: Change conditions that check for NULL in nvm.c
authorKevin McKinney <klmckinney1@gmail.com>
Wed, 20 Jun 2012 00:14:54 +0000 (20:14 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Jun 2012 23:09:43 +0000 (16:09 -0700)
This patch changes all conditions that check for NULL
from "if (variable == NULL)" or "if (NULL == variable)"
to "if (variable)" to make code more readable.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

No differences found