repo.or.cz
/
cris-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost
[cris-mirror.git]
/
drivers
/
gpu
/
drm
/
nouveau
/
nvkm
/
engine
/
disp
/
hdmi.h
blob
45094c6e142555c58984fb51da83081b0cf88fbf
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef __NVKM_DISP_HDMI_H__
3
#define __NVKM_DISP_HDMI_H__
4
#include
"ior.h"
5
6
struct
packed_hdmi_infoframe
{
7
u32 header
;
8
u32 subpack0_low
;
9
u32 subpack0_high
;
10
u32 subpack1_low
;
11
u32 subpack1_high
;
12
};
13
14
void
pack_hdmi_infoframe
(
struct
packed_hdmi_infoframe
*
packed_frame
,
15
u8
*
raw_frame
,
ssize_t len
);
16
#endif