cleanup
[rpikern] / src / video.c
1 #include "config.h"
2 #include <stdio.h>
3 #include <string.h>
4 #include <stdint.h>
5 #include "rpi.h"
6 #include "video.h"
7 #include "mem.h"
8
9 /* needs to by 16-byte aligned, because the address we send over the mailbox
10  * interface, will have its 4 least significant bits masked off and taken over
11  * by the mailbox id
12  */
13 static uint8_t propbuf[64] __attribute__((aligned(16)));
14
15 int video_init(void)
16 {
17         return 0;
18 }