f4e4c324a5
This patch syncs omap specific headers with linux-omap. Most of the changes needed because of bitrot caused by driver changes in linux-omap tree. Integrating this is needed for adding support for various omap drivers. Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
15 lines
267 B
C
15 lines
267 B
C
#ifndef _OMAP2_MCSPI_H
|
|
#define _OMAP2_MCSPI_H
|
|
|
|
struct omap2_mcspi_platform_config {
|
|
unsigned short num_cs;
|
|
};
|
|
|
|
struct omap2_mcspi_device_config {
|
|
unsigned turbo_mode:1;
|
|
|
|
/* Do we want one channel enabled at the same time? */
|
|
unsigned single_channel:1;
|
|
};
|
|
|
|
#endif
|