18 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2020 Intel Corporation4 */5 6#ifndef __I915_IOC32_H__7#define __I915_IOC32_H__8 9#ifdef CONFIG_COMPAT10struct file;11long i915_ioc32_compat_ioctl(struct file *filp, unsigned int cmd,12 unsigned long arg);13#else14#define i915_ioc32_compat_ioctl NULL15#endif16 17#endif /* __I915_IOC32_H__ */18