The bulk SPDX addition made all these files into GPL-2.0 licensed files. However the remainder of the project is MIT-licensed, these files (primarily header files) were simply missing the boiler plate and got caught up in the global update. Fixes: b24413180f5 (License cleanup: add SPDX GPL-2.0 license identifier to files with no license) Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Acked-by: Emil Velikov <emil.l.velikov@gmail.com> Acked-by: Karol Herbst <kherbst@redhat.com> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
23 lines
599 B
C
23 lines
599 B
C
/* SPDX-License-Identifier: MIT */
|
|
#ifndef __NVBIOS_P0260_H__
|
|
#define __NVBIOS_P0260_H__
|
|
u32 nvbios_P0260Te(struct nvkm_bios *,
|
|
u8 *ver, u8 *hdr, u8 *cnt, u8 *len, u8 *xnr, u8 *xsz);
|
|
|
|
struct nvbios_P0260E {
|
|
u32 data;
|
|
};
|
|
|
|
u32 nvbios_P0260Ee(struct nvkm_bios *, int idx, u8 *ver, u8 *hdr);
|
|
u32 nvbios_P0260Ep(struct nvkm_bios *, int idx, u8 *ver, u8 *hdr,
|
|
struct nvbios_P0260E *);
|
|
|
|
struct nvbios_P0260X {
|
|
u32 data;
|
|
};
|
|
|
|
u32 nvbios_P0260Xe(struct nvkm_bios *, int idx, u8 *ver, u8 *hdr);
|
|
u32 nvbios_P0260Xp(struct nvkm_bios *, int idx, u8 *ver, u8 *hdr,
|
|
struct nvbios_P0260X *);
|
|
#endif
|