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.15-rc6 17 lines 342 B view raw
1/* SPDX-License-Identifier: MIT */ 2/* 3 * Copyright © 2020 Intel Corporation 4 */ 5 6#ifndef __I915_IOC32_H__ 7#define __I915_IOC32_H__ 8 9#ifdef CONFIG_COMPAT 10struct file; 11long i915_ioc32_compat_ioctl(struct file *filp, unsigned int cmd, 12 unsigned long arg); 13#else 14#define i915_ioc32_compat_ioctl NULL 15#endif 16 17#endif /* __I915_IOC32_H__ */