blob: 0b5f09092ca4ff1ff0e8a617d51f2420507a6a3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
/*
* (C) notaz, 2010
*
* This work is licensed under the terms of the GNU GPLv2 or later.
* See the COPYING file in the top-level directory.
*/
#include "common/input.h"
#include "linux/fbdev.h"
#include "plat.h"
struct vout_fbdev *layer_fb;
int g_layer_x, g_layer_y, g_layer_w, g_layer_h;
struct in_default_bind in_evdev_defbinds[] = {
{ 0, 0, 0 },
};
int omap_enable_layer(int enabled)
{
return 0;
}
void plat_video_menu_enter(int is_rom_loaded)
{
}
void plat_video_menu_begin(void)
{
}
void plat_video_menu_end(void)
{
}
void plat_video_menu_leave(void)
{
}
void plat_init(void)
{
}
void plat_finish(void)
{
}
void in_update_analogs(void)
{
}
int plat_rescan_inputs(void)
{
return -1;
}
int plat_cpu_clock_get(void)
{
return -1;
}
int plat_cpu_clock_apply(int cpu_clock)
{
return -1;
}
int plat_get_bat_capacity(void)
{
return -1;
}
|