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 v4.18 20 lines 515 B view raw
1// SPDX-License-Identifier: GPL-2.0+ 2/* ---------------------------------------------------------------------- 3 Copyright (C) 2000 Cesar Miquel (miquel@df.uba.ar) 4 ---------------------------------------------------------------------- */ 5 6#define RIO_SEND_COMMAND 0x1 7#define RIO_RECV_COMMAND 0x2 8 9#define RIO_DIR_OUT 0x0 10#define RIO_DIR_IN 0x1 11 12struct RioCommand { 13 short length; 14 int request; 15 int requesttype; 16 int value; 17 int index; 18 void __user *buffer; 19 int timeout; 20};