1
0
Fork 0
forked from len0rd/rockbox

Fix sim error(s) (as usual).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11503 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Michael Sevakis 2006-11-10 19:03:02 +00:00
parent 58825f6e73
commit 270cb0b681

View file

@ -51,6 +51,14 @@ static inline void __backlight_off(void)
{ {
sim_backlight(0); sim_backlight(0);
} }
#ifdef HAVE_BACKLIGHT_BRIGHTNESS
static inline void __backlight_set_brightness(int val)
{
(void)val;
}
#endif
#else #else
/* Basic low-level code that simply switches backlight on or off. Probably /* Basic low-level code that simply switches backlight on or off. Probably
* a nice candidate for inclusion in the target/ dir. */ * a nice candidate for inclusion in the target/ dir. */