120db2cba8
Patch from Tony Lindgren Update misc OMAP core code from linux-omap tree: - McBSP updates by Samuel Ortiz, Andrzej Zaborowski - Whitespace cleanups by Ladislav Michl - Other fixes by various linux-omap developers Signed-off-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
16 lines
288 B
C
16 lines
288 B
C
#ifndef _OMAP2_MCSPI_H
|
|
#define _OMAP2_MCSPI_H
|
|
|
|
struct omap2_mcspi_platform_config {
|
|
unsigned long base;
|
|
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
|