Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=00775828e66124b4af54fafc393e5e89248802c9
Commit:     00775828e66124b4af54fafc393e5e89248802c9
Parent:     483c79db95b56a9650bd6f0638e7366eb20ffc01
Author:     Grant Likely <[EMAIL PROTECTED]>
AuthorDate: Tue Oct 2 12:15:49 2007 +1000
Committer:  Josh Boyer <[EMAIL PROTECTED]>
CommitDate: Wed Oct 3 07:23:15 2007 -0500

    [POWERPC] Uartlite: Add macro for uartlite device name
    
    Changed to make the following OF_platform bus binding patch a wee bit 
cleaner
    
    Signed-off-by: Grant Likely <[EMAIL PROTECTED]>
    Signed-off-by: Josh Boyer <[EMAIL PROTECTED]>
---
 drivers/serial/uartlite.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/serial/uartlite.c b/drivers/serial/uartlite.c
index ae05a67..10e0da9 100644
--- a/drivers/serial/uartlite.c
+++ b/drivers/serial/uartlite.c
@@ -18,6 +18,7 @@
 #include <linux/interrupt.h>
 #include <asm/io.h>
 
+#define ULITE_NAME             "ttyUL"
 #define ULITE_MAJOR            204
 #define ULITE_MINOR            187
 #define ULITE_NR_UARTS         4
@@ -381,7 +382,7 @@ static int __init ulite_console_setup(struct console *co, 
char *options)
 static struct uart_driver ulite_uart_driver;
 
 static struct console ulite_console = {
-       .name   = "ttyUL",
+       .name   = ULITE_NAME,
        .write  = ulite_console_write,
        .device = uart_console_device,
        .setup  = ulite_console_setup,
@@ -403,7 +404,7 @@ console_initcall(ulite_console_init);
 static struct uart_driver ulite_uart_driver = {
        .owner          = THIS_MODULE,
        .driver_name    = "uartlite",
-       .dev_name       = "ttyUL",
+       .dev_name       = ULITE_NAME,
        .major          = ULITE_MAJOR,
        .minor          = ULITE_MINOR,
        .nr             = ULITE_NR_UARTS,
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to