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 v5.9 17 lines 421 B view raw
1/* SPDX-License-Identifier: GPL-2.0-or-later */ 2/* 3 * CLPS711X SPI bus driver definitions 4 * 5 * Copyright (C) 2012 Alexander Shiyan <shc_work@mail.ru> 6 */ 7 8#ifndef ____LINUX_PLATFORM_DATA_SPI_CLPS711X_H 9#define ____LINUX_PLATFORM_DATA_SPI_CLPS711X_H 10 11/* Board specific platform_data */ 12struct spi_clps711x_pdata { 13 int *chipselect; /* Array of GPIO-numbers */ 14 int num_chipselect; /* Total count of GPIOs */ 15}; 16 17#endif