-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dave Martin
authored and
Russell King
committed
Oct 18, 2012
1 parent
3e04a21
commit 8e90400
Showing
24 changed files
with
109 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 95e629b761ce36996d1befe2824d5346b5a220b9 | ||
refs/heads/master: 153cd8e839b5729358d4e5c3371e7509ee5ac96a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* arch/arm/include/asm/mach/serial_at91.h | ||
* | ||
* Based on serial_sa1100.h by Nicolas Pitre | ||
* | ||
* Copyright (C) 2002 ATMEL Rousset | ||
* | ||
* Low level machine dependent UART functions. | ||
*/ | ||
|
||
struct uart_port; | ||
|
||
/* | ||
* This is a temporary structure for registering these | ||
* functions; it is intended to be discarded after boot. | ||
*/ | ||
struct atmel_port_fns { | ||
void (*set_mctrl)(struct uart_port *, u_int); | ||
u_int (*get_mctrl)(struct uart_port *); | ||
void (*enable_ms)(struct uart_port *); | ||
void (*pm)(struct uart_port *, u_int, u_int); | ||
int (*set_wake)(struct uart_port *, u_int); | ||
int (*open)(struct uart_port *); | ||
void (*close)(struct uart_port *); | ||
}; | ||
|
||
#if defined(CONFIG_SERIAL_ATMEL) | ||
void atmel_register_uart_fns(struct atmel_port_fns *fns); | ||
#else | ||
#define atmel_register_uart_fns(fns) do { } while (0) | ||
#endif | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* linux/include/asm-arm/mach/serial_at91.h | ||
* | ||
* Based on serial_sa1100.h by Nicolas Pitre | ||
* | ||
* Copyright (C) 2002 ATMEL Rousset | ||
* | ||
* Low level machine dependent UART functions. | ||
*/ | ||
|
||
struct uart_port; | ||
|
||
/* | ||
* This is a temporary structure for registering these | ||
* functions; it is intended to be discarded after boot. | ||
*/ | ||
struct atmel_port_fns { | ||
void (*set_mctrl)(struct uart_port *, u_int); | ||
u_int (*get_mctrl)(struct uart_port *); | ||
void (*enable_ms)(struct uart_port *); | ||
void (*pm)(struct uart_port *, u_int, u_int); | ||
int (*set_wake)(struct uart_port *, u_int); | ||
int (*open)(struct uart_port *); | ||
void (*close)(struct uart_port *); | ||
}; | ||
|
||
#if defined(CONFIG_SERIAL_ATMEL) | ||
void atmel_register_uart_fns(struct atmel_port_fns *fns); | ||
#else | ||
#define atmel_register_uart_fns(fns) do { } while (0) | ||
#endif | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.