drm/nouveau/bios: split out shadow methods
[cascardo/linux.git] / drivers / gpu / drm / nouveau / core / include / subdev / bios / image.h
1 #ifndef __NVBIOS_IMAGE_H__
2 #define __NVBIOS_IMAGE_H__
3
4 struct nvbios_image {
5         u32  base;
6         u32  size;
7         u8   type;
8         bool last;
9 };
10
11 bool nvbios_image(struct nouveau_bios *, int, struct nvbios_image *);
12
13 #endif