Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Mar 24-27, 2025, special US time zones
Register
Loading...
v6.9.4
 1/* SPDX-License-Identifier: MIT */
 2#ifndef __NVBIOS_IMAGE_H__
 3#define __NVBIOS_IMAGE_H__
 4struct nvbios_image {
 5	u32  base;
 6	u32  size;
 7	u8   type;
 8	bool last;
 9};
10
11bool nvbios_image(struct nvkm_bios *, int, struct nvbios_image *);
12#endif
v5.9
 1/* SPDX-License-Identifier: MIT */
 2#ifndef __NVBIOS_IMAGE_H__
 3#define __NVBIOS_IMAGE_H__
 4struct nvbios_image {
 5	u32  base;
 6	u32  size;
 7	u8   type;
 8	bool last;
 9};
10
11bool nvbios_image(struct nvkm_bios *, int, struct nvbios_image *);
12#endif