aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorLinus Walleij <linus.walleij@linaro.org>2013-10-15 03:20:26 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-10-16 16:16:18 -0400
commitadedb750727cdc33aa5074a7a3e68d47f1debc83 (patch)
treea454c37c3c3ca1e99d488e17eb2e101107361e9e /drivers/tty
parente701bcadb254caf555d64af9662d5d5fbccade9d (diff)
serial: sa1100: delete .set_wake callback
This callback is unused by the serial core since pre-git days and is not coming back. Delete it. Enabling wakeup on the SA1100 platforms should be done in the suspend() callback so the platform hook is left in the serial port struct for later enablement. Cc: Russell King <linux@arm.linux.org.uk> Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/serial/sa1100.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/tty/serial/sa1100.c b/drivers/tty/serial/sa1100.c
index ba25722a7131..753d4525b367 100644
--- a/drivers/tty/serial/sa1100.c
+++ b/drivers/tty/serial/sa1100.c
@@ -647,7 +647,10 @@ void sa1100_register_uart_fns(struct sa1100_port_fns *fns)
647 sa1100_pops.set_mctrl = fns->set_mctrl; 647 sa1100_pops.set_mctrl = fns->set_mctrl;
648 648
649 sa1100_pops.pm = fns->pm; 649 sa1100_pops.pm = fns->pm;
650 sa1100_pops.set_wake = fns->set_wake; 650 /*
651 * FIXME: fns->set_wake is unused - this should be called from
652 * the suspend() callback if device_may_wakeup(dev)) is set.
653 */
651} 654}
652 655
653void __init sa1100_register_uart(int idx, int port) 656void __init sa1100_register_uart(int idx, int port)