diff options
author | Haavard Skinnemoen <hskinnemoen@atmel.com> | 2006-10-04 10:02:07 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 13:25:05 -0400 |
commit | 71f2e2b8783f7b270b673e31e2322572057b286a (patch) | |
tree | 1a6ada15d7ae3dcde5b4904d464be20786ce4440 /include/asm-arm | |
parent | 9ab4f88b7ffdf338773e7755f923bc6b9e079834 (diff) |
[PATCH] atmel_serial: Rename at91_register_uart_fns
Rename at91_register_uart_fns and associated structs and variables
to make it consistent with the atmel_ prefix used by the rest of
the driver.
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Acked-by: Andrew Victor <andrew@sanpeople.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-arm')
-rw-r--r-- | include/asm-arm/mach/serial_at91.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-arm/mach/serial_at91.h b/include/asm-arm/mach/serial_at91.h index 239e1f65d67b..55b317a89061 100644 --- a/include/asm-arm/mach/serial_at91.h +++ b/include/asm-arm/mach/serial_at91.h | |||
@@ -14,7 +14,7 @@ struct uart_port; | |||
14 | * This is a temporary structure for registering these | 14 | * This is a temporary structure for registering these |
15 | * functions; it is intended to be discarded after boot. | 15 | * functions; it is intended to be discarded after boot. |
16 | */ | 16 | */ |
17 | struct at91_port_fns { | 17 | struct atmel_port_fns { |
18 | void (*set_mctrl)(struct uart_port *, u_int); | 18 | void (*set_mctrl)(struct uart_port *, u_int); |
19 | u_int (*get_mctrl)(struct uart_port *); | 19 | u_int (*get_mctrl)(struct uart_port *); |
20 | void (*enable_ms)(struct uart_port *); | 20 | void (*enable_ms)(struct uart_port *); |
@@ -25,9 +25,9 @@ struct at91_port_fns { | |||
25 | }; | 25 | }; |
26 | 26 | ||
27 | #if defined(CONFIG_SERIAL_ATMEL) | 27 | #if defined(CONFIG_SERIAL_ATMEL) |
28 | void at91_register_uart_fns(struct at91_port_fns *fns); | 28 | void atmel_register_uart_fns(struct atmel_port_fns *fns); |
29 | #else | 29 | #else |
30 | #define at91_register_uart_fns(fns) do { } while (0) | 30 | #define atmel_register_uart_fns(fns) do { } while (0) |
31 | #endif | 31 | #endif |
32 | 32 | ||
33 | 33 | ||