video.h 353 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _ASM_VIDEO_H_
  3. #define _ASM_VIDEO_H_
  4. #include <linux/types.h>
  5. struct device;
  6. #if defined(CONFIG_STI_CORE) && defined(CONFIG_VIDEO)
  7. bool video_is_primary_device(struct device *dev);
  8. #define video_is_primary_device video_is_primary_device
  9. #endif
  10. #include <asm-generic/video.h>
  11. #endif /* _ASM_VIDEO_H_ */