aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/firmware/pcdp.c
diff options
context:
space:
mode:
authorPeter Hurley <peter@hurleysoftware.com>2015-03-09 16:27:22 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-03-26 12:25:27 -0400
commitdf519e7bd33cf56d8a5ce357dfb94248d427b688 (patch)
tree34501d53c221f1c76e42b619bb5618b51d0ac6f8 /drivers/firmware/pcdp.c
parent470ca0de69feaba5df215ad804cec1859883a5ed (diff)
serial: 8250_early: Remove setup_early_serial8250_console()
setup_earlycon() will now match and register the desired earlycon from the param string (as if 'earlycon=...' had been set on the command line). Use setup_earlycon() from existing arch call sites which start an earlycon directly. Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Peter Hurley <peter@hurleysoftware.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/firmware/pcdp.c')
-rw-r--r--drivers/firmware/pcdp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/firmware/pcdp.c b/drivers/firmware/pcdp.c
index a330492e06f9..75273a251603 100644
--- a/drivers/firmware/pcdp.c
+++ b/drivers/firmware/pcdp.c
@@ -15,7 +15,7 @@
15#include <linux/console.h> 15#include <linux/console.h>
16#include <linux/efi.h> 16#include <linux/efi.h>
17#include <linux/serial.h> 17#include <linux/serial.h>
18#include <linux/serial_8250.h> 18#include <linux/serial_core.h>
19#include <asm/vga.h> 19#include <asm/vga.h>
20#include "pcdp.h" 20#include "pcdp.h"
21 21
@@ -43,7 +43,7 @@ setup_serial_console(struct pcdp_uart *uart)
43 } 43 }
44 44
45 add_preferred_console("uart", 8250, &options[9]); 45 add_preferred_console("uart", 8250, &options[9]);
46 return setup_early_serial8250_console(options); 46 return setup_earlycon(options);
47#else 47#else
48 return -ENODEV; 48 return -ENODEV;
49#endif 49#endif