diff options
author | Sonic Zhang <sonic.zhang@analog.com> | 2010-03-09 12:25:32 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-05-21 12:34:27 -0400 |
commit | b59588aae8356caf52b653a7c448c3fffdd27628 (patch) | |
tree | 5b4c67ff8701bd7d62b96081e619c38d3e441831 /drivers/serial | |
parent | e8126b32f6782d2e275e632a5e51e2433ceda7b0 (diff) |
serial: bfin_sport_uart: rename early platform driver class string
Clarifies command line set up for devices between consoles and early
devices.
Signed-off-by: Sonic Zhang <sonic.zhang@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/bfin_sport_uart.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/drivers/serial/bfin_sport_uart.c b/drivers/serial/bfin_sport_uart.c index 49e7e4f79e0a..79252664f706 100644 --- a/drivers/serial/bfin_sport_uart.c +++ b/drivers/serial/bfin_sport_uart.c | |||
@@ -527,6 +527,8 @@ struct uart_ops sport_uart_ops = { | |||
527 | static struct sport_uart_port *bfin_sport_uart_ports[BFIN_SPORT_UART_MAX_PORTS]; | 527 | static struct sport_uart_port *bfin_sport_uart_ports[BFIN_SPORT_UART_MAX_PORTS]; |
528 | 528 | ||
529 | #ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE | 529 | #ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE |
530 | #define CLASS_BFIN_SPORT_CONSOLE "bfin-sport-console" | ||
531 | |||
530 | static int __init | 532 | static int __init |
531 | sport_uart_console_setup(struct console *co, char *options) | 533 | sport_uart_console_setup(struct console *co, char *options) |
532 | { | 534 | { |
@@ -788,7 +790,7 @@ static struct platform_driver sport_uart_driver = { | |||
788 | 790 | ||
789 | #ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE | 791 | #ifdef CONFIG_SERIAL_BFIN_SPORT_CONSOLE |
790 | static __initdata struct early_platform_driver early_sport_uart_driver = { | 792 | static __initdata struct early_platform_driver early_sport_uart_driver = { |
791 | .class_str = DRV_NAME, | 793 | .class_str = CLASS_BFIN_SPORT_CONSOLE, |
792 | .pdrv = &sport_uart_driver, | 794 | .pdrv = &sport_uart_driver, |
793 | .requested_id = EARLY_PLATFORM_ID_UNSET, | 795 | .requested_id = EARLY_PLATFORM_ID_UNSET, |
794 | }; | 796 | }; |
@@ -797,7 +799,8 @@ static int __init sport_uart_rs_console_init(void) | |||
797 | { | 799 | { |
798 | early_platform_driver_register(&early_sport_uart_driver, DRV_NAME); | 800 | early_platform_driver_register(&early_sport_uart_driver, DRV_NAME); |
799 | 801 | ||
800 | early_platform_driver_probe(DRV_NAME, BFIN_SPORT_UART_MAX_PORTS, 0); | 802 | early_platform_driver_probe(CLASS_BFIN_SPORT_CONSOLE, |
803 | BFIN_SPORT_UART_MAX_PORTS, 0); | ||
801 | 804 | ||
802 | register_console(&sport_uart_console); | 805 | register_console(&sport_uart_console); |
803 | 806 | ||