serial: 8250_dw: fix broken function call
authorHeikki Krogerus <heikki.krogerus@linux.intel.com>
Fri, 27 Sep 2013 07:21:07 +0000 (10:21 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 28 Sep 2013 00:39:11 +0000 (17:39 -0700)
The stub for dw8250_probe_acpi() is missing an argument.

Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/8250/8250_dw.c

index 8edf7697fdb2789b850bb49a0f2b3e3f9aae49db..d04a037d6b6fc11728f3aacbdbc0a2ae7a0bf18a 100644 (file)
@@ -278,7 +278,8 @@ static int dw8250_probe_acpi(struct uart_8250_port *up,
        return 0;
 }
 #else
-static inline int dw8250_probe_acpi(struct uart_8250_port *up)
+static inline int dw8250_probe_acpi(struct uart_8250_port *up,
+                                   struct dw8250_data *data)
 {
        return -ENODEV;
 }