Lines Matching defs:spi_device
176 struct spi_device { struct
177 struct device dev;
178 struct spi_controller *controller;
179 struct spi_controller *master; /* Compatibility layer */
180 u32 max_speed_hz;
181 u8 chip_select;
182 u8 bits_per_word;
183 bool rt;
196 u32 mode;
197 int irq;
198 void *controller_state;
199 void *controller_data;
200 char modalias[SPI_NAME_SIZE];
201 const char *driver_override;
202 struct gpio_desc *cs_gpiod; /* Chip select gpio desc */
226 static inline struct spi_device *to_spi_device(struct device *dev) in to_spi_device() argument