Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.4-rc2 14 lines 265 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __ASM_SPI_H__ 3#define __ASM_SPI_H__ 4 5struct sh_spi_info; 6 7struct sh_spi_info { 8 int bus_num; 9 int num_chipselect; 10 11 void (*chip_select)(struct sh_spi_info *spi, int cs, int state); 12}; 13 14#endif /* __ASM_SPI_H__ */