aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2014-09-28 14:10:17 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-11-05 19:12:05 -0500
commita4dc923640418120fe7bbdfac149397bc761a249 (patch)
tree2ce83d2454e3f960f48e982f681c042621386d7f
parent0df1f2487d2f0d04703f142813d53615d62a1da4 (diff)
goldfish: fix sparse warnings
drivers/tty/goldfish.c:160:46: warning: Using plain integer as NULL pointer drivers/tty/goldfish.c:320:22: warning: Using plain integer as NULL pointer Signed-off-by: Fabian Frederick <fabf@skynet.be> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/tty/goldfish.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/goldfish.c b/drivers/tty/goldfish.c
index 09495f515fa9..c24b9633ae19 100644
--- a/drivers/tty/goldfish.c
+++ b/drivers/tty/goldfish.c
@@ -157,7 +157,7 @@ static int goldfish_tty_console_setup(struct console *co, char *options)
157{ 157{
158 if ((unsigned)co->index > goldfish_tty_line_count) 158 if ((unsigned)co->index > goldfish_tty_line_count)
159 return -ENODEV; 159 return -ENODEV;
160 if (goldfish_ttys[co->index].base == 0) 160 if (!goldfish_ttys[co->index].base)
161 return -ENODEV; 161 return -ENODEV;
162 return 0; 162 return 0;
163} 163}
@@ -317,7 +317,7 @@ static int goldfish_tty_remove(struct platform_device *pdev)
317 unregister_console(&qtty->console); 317 unregister_console(&qtty->console);
318 tty_unregister_device(goldfish_tty_driver, pdev->id); 318 tty_unregister_device(goldfish_tty_driver, pdev->id);
319 iounmap(qtty->base); 319 iounmap(qtty->base);
320 qtty->base = 0; 320 qtty->base = NULL;
321 free_irq(qtty->irq, pdev); 321 free_irq(qtty->irq, pdev);
322 goldfish_tty_current_line_count--; 322 goldfish_tty_current_line_count--;
323 if (goldfish_tty_current_line_count == 0) 323 if (goldfish_tty_current_line_count == 0)