/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */1/*2* This file is subject to the terms and conditions of the GNU General Public3* License. See the file "COPYING" in the main directory of this archive4* for more details.5*6* Copyright (C) 1995, 96, 99, 2001 Ralf Baechle <[email protected]>7* Copyright (C) 2009 Wind River Systems8* Written by Ralf Baechle <[email protected]>9*/10#ifndef __ASM_IOCTL_H11#define __ASM_IOCTL_H1213#define _IOC_SIZEBITS 1314#define _IOC_DIRBITS 31516/*17* Direction bits _IOC_NONE could be 0, but OSF/1 gives it a bit.18* And this turns out useful to catch old ioctl numbers in header19* files for us.20*/21#define _IOC_NONE 1U22#define _IOC_READ 2U23#define _IOC_WRITE 4U2425#include <asm-generic/ioctl.h>2627#endif /* __ASM_IOCTL_H */282930