net: wan: replace comparison to NULL with "!card"
According to the chackpatch.pl, comparison to NULL could be written "!card". Signed-off-by: Peng Li <lipeng321@huawei.com> Signed-off-by: Guangbin Huang <huangguangbin2@huawei.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
69542276e2
commit
2aea27bae8
|
@ -335,7 +335,7 @@ static int __init n2_run(unsigned long io, unsigned long irq,
|
|||
}
|
||||
|
||||
card = kzalloc(sizeof(card_t), GFP_KERNEL);
|
||||
if (card == NULL)
|
||||
if (!card)
|
||||
return -ENOBUFS;
|
||||
|
||||
card->ports[0].dev = alloc_hdlcdev(&card->ports[0]);
|
||||
|
@ -469,7 +469,7 @@ static int __init n2_run(unsigned long io, unsigned long irq,
|
|||
|
||||
static int __init n2_init(void)
|
||||
{
|
||||
if (hw==NULL) {
|
||||
if (!hw) {
|
||||
#ifdef MODULE
|
||||
pr_info("no card initialized\n");
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue