diff options
author | Uwe Kleine-König <u.kleine-koenig@pengutronix.de> | 2013-08-08 16:09:50 +0200 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-09 17:32:57 +0100 |
commit | 86f8973c1053cb03e1b1b45989a4e144e05b1735 (patch) | |
tree | 3ed8ec0d5513b5ebc73ace9882db616161f56caf /include/linux/platform_data/efm32-spi.h | |
parent | 52ade736215fb4421a6dc2b6900703a6fadba9e9 (diff) |
spi: new controller driver for efm32 SoCs
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'include/linux/platform_data/efm32-spi.h')
-rw-r--r-- | include/linux/platform_data/efm32-spi.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/include/linux/platform_data/efm32-spi.h b/include/linux/platform_data/efm32-spi.h new file mode 100644 index 00000000000..31b19ca1d73 --- /dev/null +++ b/include/linux/platform_data/efm32-spi.h @@ -0,0 +1,14 @@ +#ifndef __LINUX_PLATFORM_DATA_EFM32_SPI_H__ +#define __LINUX_PLATFORM_DATA_EFM32_SPI_H__ + +#include <linux/types.h> + +/** + * struct efm32_spi_pdata + * @location: pinmux location for the I/O pins (to be written to the ROUTE + * register) + */ +struct efm32_spi_pdata { + u8 location; +}; +#endif /* ifndef __LINUX_PLATFORM_DATA_EFM32_SPI_H__ */ |