aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/n_hdlc.c
diff options
context:
space:
mode:
authorHarvey Harrison <harvey.harrison@gmail.com>2008-04-28 19:50:04 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-04-28 20:31:13 -0400
commita01e035ebb552223c03f2d9138ffc73f2d4d3965 (patch)
tree3d5516138e2c973ce51c808677faba2c52d15d0a /drivers/char/n_hdlc.c
parenta6a3a17b7fdaf824e6d73e8e4a94c9d149302f74 (diff)
drivers: fix integer as NULL pointer warnings
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/n_hdlc.c')
-rw-r--r--drivers/char/n_hdlc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/char/n_hdlc.c b/drivers/char/n_hdlc.c
index 82bcfb9c839a..06803ed5568c 100644
--- a/drivers/char/n_hdlc.c
+++ b/drivers/char/n_hdlc.c
@@ -501,7 +501,7 @@ static void n_hdlc_tty_receive(struct tty_struct *tty, const __u8 *data,
501 __FILE__,__LINE__, count); 501 __FILE__,__LINE__, count);
502 502
503 /* This can happen if stuff comes in on the backup tty */ 503 /* This can happen if stuff comes in on the backup tty */
504 if (n_hdlc == 0 || tty != n_hdlc->tty) 504 if (!n_hdlc || tty != n_hdlc->tty)
505 return; 505 return;
506 506
507 /* verify line is using HDLC discipline */ 507 /* verify line is using HDLC discipline */