1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2023 Intel Corporation 4 */ 5 6 #ifndef __INTEL_SPRITE_UAPI_H__ 7 #define __INTEL_SPRITE_UAPI_H__ 8 9 struct drm_device; 10 struct drm_file; 11 12 int intel_sprite_set_colorkey_ioctl(struct drm_device *dev, void *data, 13 struct drm_file *file_priv); 14 15 #endif /* __INTEL_SPRITE_UAPI_H__ */ 16