diff options
author | Heikki Krogerus <heikki.krogerus@linux.intel.com> | 2013-09-27 03:21:07 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-09-27 20:39:11 -0400 |
commit | 058555739166561b97313123521574f0a9b2c9d7 (patch) | |
tree | 4c715a95328e145934dcfded57ab53a954e3866d /drivers/tty | |
parent | b15e5691cc98b5e17db8ba8a433a4ac78efbf590 (diff) |
serial: 8250_dw: fix broken function call
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>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/serial/8250/8250_dw.c | 3 |
1 files changed, 2 insertions, 1 deletions
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, | |||
278 | return 0; | 278 | return 0; |
279 | } | 279 | } |
280 | #else | 280 | #else |
281 | static inline int dw8250_probe_acpi(struct uart_8250_port *up) | 281 | static inline int dw8250_probe_acpi(struct uart_8250_port *up, |
282 | struct dw8250_data *data) | ||
282 | { | 283 | { |
283 | return -ENODEV; | 284 | return -ENODEV; |
284 | } | 285 | } |