mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-03 20:34:58 +08:00
b7019ac550
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: b24413180f
(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>
30 lines
635 B
C
30 lines
635 B
C
/* SPDX-License-Identifier: MIT */
|
|
#ifndef __NVIF_CL0046_H__
|
|
#define __NVIF_CL0046_H__
|
|
|
|
#define NV04_DISP_NTFY_VBLANK 0x00
|
|
#define NV04_DISP_NTFY_CONN 0x01
|
|
|
|
struct nv04_disp_mthd_v0 {
|
|
__u8 version;
|
|
#define NV04_DISP_SCANOUTPOS 0x00
|
|
__u8 method;
|
|
__u8 head;
|
|
__u8 pad03[5];
|
|
};
|
|
|
|
struct nv04_disp_scanoutpos_v0 {
|
|
__u8 version;
|
|
__u8 pad01[7];
|
|
__s64 time[2];
|
|
__u16 vblanks;
|
|
__u16 vblanke;
|
|
__u16 vtotal;
|
|
__u16 vline;
|
|
__u16 hblanks;
|
|
__u16 hblanke;
|
|
__u16 htotal;
|
|
__u16 hline;
|
|
};
|
|
#endif
|