xref: /netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/nouveau_vga.h (revision 41ec02673d281bbb3d38e6c78504ce6e30c228c1)
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