staging: bcm2835-audio: Rewrite comparison to NULL
Fixes checkpatch check "Comparison to NULL could be written '!chip'". Signed-off-by: Simon Sandström <simon@nikanor.nu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
2b48e88571
commit
ab601be466
@ -61,7 +61,7 @@ static int snd_bcm2835_create(struct snd_card *card,
|
||||
*rchip = NULL;
|
||||
|
||||
chip = kzalloc(sizeof(*chip), GFP_KERNEL);
|
||||
if (chip == NULL)
|
||||
if (!chip)
|
||||
return -ENOMEM;
|
||||
|
||||
chip->card = card;
|
||||
|
Loading…
Reference in New Issue
Block a user