ARM: at91: fix board-rm9200-dt after sys_timer conversion
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / gpu / drm / nouveau / core / include / subdev / bios / init.h
1 #ifndef __NVBIOS_INIT_H__
2 #define __NVBIOS_INIT_H__
3
4 struct nvbios_init {
5 struct nouveau_subdev *subdev;
6 struct nouveau_bios *bios;
7 u16 offset;
8 struct dcb_output *outp;
9 int crtc;
10
11 /* internal state used during parsing */
12 u8 execute;
13 u32 nested;
14 u16 repeat;
15 u16 repend;
16 };
17
18 int nvbios_exec(struct nvbios_init *);
19 int nvbios_init(struct nouveau_subdev *, bool execute);
20
21 #endif