aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorHeikki Krogerus <heikki.krogerus@linux.intel.com>2013-09-27 03:21:07 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-09-27 20:39:11 -0400
commit058555739166561b97313123521574f0a9b2c9d7 (patch)
tree4c715a95328e145934dcfded57ab53a954e3866d /drivers/tty
parentb15e5691cc98b5e17db8ba8a433a4ac78efbf590 (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.c3
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
281static inline int dw8250_probe_acpi(struct uart_8250_port *up) 281static 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}