altera_uart: Don't use plain integer as NULL pointer
[deliverable/linux.git] / drivers / serial / altera_uart.c
index dfc1ecc40abcc4029bcba1c82e51ead2682afad1..721216292a5049882847e9712735b0ca82950b1e 100644 (file)
@@ -461,7 +461,7 @@ static int __init altera_uart_console_setup(struct console *co, char *options)
        if (co->index < 0 || co->index >= CONFIG_SERIAL_ALTERA_UART_MAXPORTS)
                return -EINVAL;
        port = &altera_uart_ports[co->index].port;
-       if (port->membase == 0)
+       if (!port->membase)
                return -ENODEV;
 
        if (options)
This page took 0.026481 seconds and 5 git commands to generate.