aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/spi/xilinx_spi.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/spi/xilinx_spi.h')
-rw-r--r--include/linux/spi/xilinx_spi.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/spi/xilinx_spi.h b/include/linux/spi/xilinx_spi.h
index 06df0aba3aee..a705ad85eebe 100644
--- a/include/linux/spi/xilinx_spi.h
+++ b/include/linux/spi/xilinx_spi.h
@@ -4,11 +4,13 @@
4/** 4/**
5 * struct xspi_platform_data - Platform data of the Xilinx SPI driver 5 * struct xspi_platform_data - Platform data of the Xilinx SPI driver
6 * @num_chipselect: Number of chip select by the IP 6 * @num_chipselect: Number of chip select by the IP
7 * @little_endian If registers should be accessed little endian or not
7 * @devices: Devices to add when the driver is probed. 8 * @devices: Devices to add when the driver is probed.
8 * @num_devices: Number of devices in the devices array. 9 * @num_devices: Number of devices in the devices array.
9 */ 10 */
10struct xspi_platform_data { 11struct xspi_platform_data {
11 u16 num_chipselect; 12 u16 num_chipselect;
13 bool little_endian;
12 struct spi_board_info *devices; 14 struct spi_board_info *devices;
13 u8 num_devices; 15 u8 num_devices;
14}; 16};