summaryrefslogtreecommitdiffstats
path: root/arch/sh/include/asm/spi.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sh/include/asm/spi.h')
-rw-r--r--arch/sh/include/asm/spi.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/sh/include/asm/spi.h b/arch/sh/include/asm/spi.h
new file mode 100644
index 000000000..6780753bd
--- /dev/null
+++ b/arch/sh/include/asm/spi.h
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+#ifndef __ASM_SPI_H__
+#define __ASM_SPI_H__
+
+struct sh_spi_info;
+
+struct sh_spi_info {
+ int bus_num;
+ int num_chipselect;
+
+ void (*chip_select)(struct sh_spi_info *spi, int cs, int state);
+};
+
+#endif /* __ASM_SPI_H__ */