1234567891011121314151617 |
- #ifndef ADSPRPC_COMPAT_H
- #define ADSPRPC_COMPAT_H
- #if IS_ENABLED(CONFIG_COMPAT)
- long compat_fastrpc_device_ioctl(struct file *filp, unsigned int cmd,
- unsigned long arg);
- #else
- #define compat_fastrpc_device_ioctl NULL
- #endif
- #endif
|