diff options
author | Wolfram Sang <w.sang@pengutronix.de> | 2010-11-12 13:47:47 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2010-11-16 15:50:18 -0500 |
commit | e44dcb6c377529805bbaae505d5b333daab69111 (patch) | |
tree | 364a994a250c177c40f7a8ce3cb5eefafed03fb5 /drivers/serial/mpc52xx_uart.c | |
parent | 597c606f560cf7ef6029152fa7574bddbfb0252f (diff) |
serial: mpc52xx: make printout for type more generic
The printout for the type should be just "5xxx", so 512x users won't
wonder why they have a mpc52xx-type UART.
Signed-off-by: Wolfram Sang <w.sang@pengutronix.de>
Cc: Grant Likely <grant.likely@secretlab.ca>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/serial/mpc52xx_uart.c')
-rw-r--r-- | drivers/serial/mpc52xx_uart.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/serial/mpc52xx_uart.c b/drivers/serial/mpc52xx_uart.c index c4399e23565a..126ec7f568ec 100644 --- a/drivers/serial/mpc52xx_uart.c +++ b/drivers/serial/mpc52xx_uart.c | |||
@@ -838,7 +838,11 @@ mpc52xx_uart_set_termios(struct uart_port *port, struct ktermios *new, | |||
838 | static const char * | 838 | static const char * |
839 | mpc52xx_uart_type(struct uart_port *port) | 839 | mpc52xx_uart_type(struct uart_port *port) |
840 | { | 840 | { |
841 | return port->type == PORT_MPC52xx ? "MPC52xx PSC" : NULL; | 841 | /* |
842 | * We keep using PORT_MPC52xx for historic reasons although it applies | ||
843 | * for MPC512x, too, but print "MPC5xxx" to not irritate users | ||
844 | */ | ||
845 | return port->type == PORT_MPC52xx ? "MPC5xxx PSC" : NULL; | ||
842 | } | 846 | } |
843 | 847 | ||
844 | static void | 848 | static void |