xref: /linux/arch/parisc/include/asm/video.h (revision 36ec807b627b4c0a0a382f0ae48eac7187d14b2b)
1*2fd001cdSThomas Zimmermann /* SPDX-License-Identifier: GPL-2.0 */
2*2fd001cdSThomas Zimmermann #ifndef _ASM_VIDEO_H_
3*2fd001cdSThomas Zimmermann #define _ASM_VIDEO_H_
4*2fd001cdSThomas Zimmermann 
5*2fd001cdSThomas Zimmermann #include <linux/types.h>
6*2fd001cdSThomas Zimmermann 
7*2fd001cdSThomas Zimmermann struct device;
8*2fd001cdSThomas Zimmermann 
9*2fd001cdSThomas Zimmermann #if defined(CONFIG_STI_CORE)
10*2fd001cdSThomas Zimmermann bool video_is_primary_device(struct device *dev);
11*2fd001cdSThomas Zimmermann #define video_is_primary_device video_is_primary_device
12*2fd001cdSThomas Zimmermann #endif
13*2fd001cdSThomas Zimmermann 
14*2fd001cdSThomas Zimmermann #include <asm-generic/video.h>
15*2fd001cdSThomas Zimmermann 
16*2fd001cdSThomas Zimmermann #endif /* _ASM_VIDEO_H_ */
17