From: Heikki Krogerus Date: Fri, 27 Sep 2013 07:21:07 +0000 (+0300) Subject: serial: 8250_dw: fix broken function call X-Git-Tag: firefly_0821_release~176^2~5058^2~51 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=058555739166561b97313123521574f0a9b2c9d7;p=firefly-linux-kernel-4.4.55.git serial: 8250_dw: fix broken function call The stub for dw8250_probe_acpi() is missing an argument. Reported-by: kbuild test robot Signed-off-by: Heikki Krogerus Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/8250/8250_dw.c b/drivers/tty/serial/8250/8250_dw.c index 8edf7697fdb2..d04a037d6b6f 100644 --- a/drivers/tty/serial/8250/8250_dw.c +++ b/drivers/tty/serial/8250/8250_dw.c @@ -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; }