repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
WIP FPC-III support
[linux/fpc-iii.git]
/
drivers
/
gpu
/
drm
/
nouveau
/
include
/
nvkm
/
subdev
/
bios
/
image.h
blob
e13dc059a9ee8a84f7c07be496477e9cd1b9ee4e
1
/* SPDX-License-Identifier: MIT */
2
#ifndef __NVBIOS_IMAGE_H__
3
#define __NVBIOS_IMAGE_H__
4
struct
nvbios_image
{
5
u32 base
;
6
u32 size
;
7
u8 type
;
8
bool
last
;
9
};
10
11
bool
nvbios_image
(
struct
nvkm_bios
*,
int
,
struct
nvbios_image
*);
12
#endif