aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/spi/mxs-spi.h
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2012-08-03 17:26:09 +0200
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-08-17 22:52:51 +0100
commit829c1bf40b926a86e545733f6252262add3abe39 (patch)
tree8d94e9dc8ccc86a7f2cf9d1a72fae88efc9209c2 /include/linux/spi/mxs-spi.h
parentmmc: spi: Add necessary bits into mxs-spi.h (diff)
downloadlinux-dev-829c1bf40b926a86e545733f6252262add3abe39.tar.xz
linux-dev-829c1bf40b926a86e545733f6252262add3abe39.zip
mmc: spi: Pull out parts shared between MMC and SPI
Abstract out the common part of private data shared between MMC and SPI. These shall later allow to use common clock configuration function. Signed-off-by: Marek Vasut <marex@denx.de> Acked-by: Chris Ball <cjb@laptop.org> Acked-by: Shawn Guo <shawn.guo@linaro.org> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'include/linux/spi/mxs-spi.h')
-rw-r--r--include/linux/spi/mxs-spi.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/spi/mxs-spi.h b/include/linux/spi/mxs-spi.h
index 7dfa1d7d1a78..475f69fb896f 100644
--- a/include/linux/spi/mxs-spi.h
+++ b/include/linux/spi/mxs-spi.h
@@ -128,4 +128,12 @@ enum mxs_ssp_id {
IMX28_SSP,
};
+struct mxs_ssp {
+ struct device *dev;
+ void __iomem *base;
+ struct clk *clk;
+ unsigned int clk_rate;
+ enum mxs_ssp_id devid;
+};
+
#endif /* __LINUX_SPI_MXS_SPI_H__ */