2582d8c165
Add platform specific init functions. Also rename the struct platform_device dev into pdev. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
12 lines
243 B
C
12 lines
243 B
C
#ifndef ASMARM_ARCH_UART_H
|
|
#define ASMARM_ARCH_UART_H
|
|
|
|
#define IMXUART_HAVE_RTSCTS (1<<0)
|
|
|
|
struct imxuart_platform_data {
|
|
int (*init)(struct platform_device *pdev);
|
|
void (*exit)(struct platform_device *pdev);
|
|
unsigned int flags;
|
|
};
|
|
|
|
#endif
|