]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/blob - releases/3.8.4/tty-serial-fix-typo-serial_s3c2412.patch
Linux 4.14.95
[thirdparty/kernel/stable-queue.git] / releases / 3.8.4 / tty-serial-fix-typo-serial_s3c2412.patch
1 From c51d41a1dd8f23a06a4ed651ebb9617de7f59368 Mon Sep 17 00:00:00 2001
2 From: Paul Bolle <pebolle@tiscali.nl>
3 Date: Tue, 12 Mar 2013 10:10:32 +0100
4 Subject: tty: serial: fix typo "SERIAL_S3C2412"
5
6 From: Paul Bolle <pebolle@tiscali.nl>
7
8 commit c51d41a1dd8f23a06a4ed651ebb9617de7f59368 upstream.
9
10 The Kconfig symbol SERIAL_S3C2412 got removed in commit
11 da121506eb03ee5daea55404709110b798bd61d9 ("serial: samsung: merge
12 probe() function from all SoC specific extensions"). But it also added a
13 last reference to that symbol. The commit and the tree make clear that
14 CPU_S3C2412 should have been used instead.
15
16 Signed-off-by: Paul Bolle <pebolle@tiscali.nl>
17 Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18
19 ---
20 drivers/tty/serial/Kconfig | 2 +-
21 1 file changed, 1 insertion(+), 1 deletion(-)
22
23 --- a/drivers/tty/serial/Kconfig
24 +++ b/drivers/tty/serial/Kconfig
25 @@ -209,7 +209,7 @@ config SERIAL_SAMSUNG
26 config SERIAL_SAMSUNG_UARTS_4
27 bool
28 depends on PLAT_SAMSUNG
29 - default y if !(CPU_S3C2410 || SERIAL_S3C2412 || CPU_S3C2440 || CPU_S3C2442)
30 + default y if !(CPU_S3C2410 || CPU_S3C2412 || CPU_S3C2440 || CPU_S3C2442)
31 help
32 Internal node for the common case of 4 Samsung compatible UARTs
33