diff options
author | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-02-25 06:54:21 +0000 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-02-25 06:54:21 +0000 |
commit | 0bb418357c0e03d3d6fd6d5bea64dccefd9694eb (patch) | |
tree | d7a5d64e58db84387640a7360025c53fc2f49fa1 | |
parent | 9b3749d68b5eb12fe8ef2fc299888b8338bd3367 (diff) | |
download | mediapointer-dvb-s2-0bb418357c0e03d3d6fd6d5bea64dccefd9694eb.tar.gz mediapointer-dvb-s2-0bb418357c0e03d3d6fd6d5bea64dccefd9694eb.tar.bz2 |
fix integer as NULL pointer warning in mt20xx.c
From: Harvey Harrison <harvey.harrison@gmail.com>
drivers/media/video/mt20xx.c:650:10: warning: Using plain integer as NULL pointer
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
-rw-r--r-- | linux/drivers/media/video/mt20xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/mt20xx.c b/linux/drivers/media/video/mt20xx.c index 5a8a53d8a..d2c281aeb 100644 --- a/linux/drivers/media/video/mt20xx.c +++ b/linux/drivers/media/video/mt20xx.c @@ -682,7 +682,7 @@ struct dvb_frontend *microtune_attach(struct dvb_frontend *fe, default: tuner_info("microtune %s found, not (yet?) supported, sorry :-/\n", name); - return 0; + return NULL; } strlcpy(fe->ops.tuner_ops.info.name, name, |