Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.11 21 lines 466 B view raw
1/* SPDX-License-Identifier: GPL-2.0+ */ 2/* 3 * Copyright (C) 2019-2022 Bootlin 4 * Author: Paul Kocialkowski <paul.kocialkowski@bootlin.com> 5 */ 6 7#ifndef _LOGICVC_CRTC_H_ 8#define _LOGICVC_CRTC_H_ 9 10struct drm_pending_vblank_event; 11struct logicvc_drm; 12 13struct logicvc_crtc { 14 struct drm_crtc drm_crtc; 15 struct drm_pending_vblank_event *event; 16}; 17 18void logicvc_crtc_vblank_handler(struct logicvc_drm *logicvc); 19int logicvc_crtc_init(struct logicvc_drm *logicvc); 20 21#endif