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

Configure Feed

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

at v5.10-rc3 12 lines 200 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef __ARCOM_PCMCIA_H 3#define __ARCOM_PCMCIA_H 4 5struct arcom_pcmcia_pdata { 6 int cd_gpio; 7 int rdy_gpio; 8 int pwr_gpio; 9 void (*reset)(int state); 10}; 11 12#endif