1 /* $NetBSD: nouveau_vga.h,v 1.4 2021/12/18 23:45:32 riastradh Exp $ */ 2 3 /* SPDX-License-Identifier: MIT */ 4 #ifndef __NOUVEAU_VGA_H__ 5 #define __NOUVEAU_VGA_H__ 6 7 struct nouveau_drm; 8 struct drm_device; 9 10 void nouveau_vga_init(struct nouveau_drm *); 11 void nouveau_vga_fini(struct nouveau_drm *); 12 void nouveau_vga_lastclose(struct drm_device *dev); 13 14 #endif 15