1
0
Fork 0
forked from len0rd/rockbox

Fix up some more red

find_first_set_bit() becomes a small inline on ARMv5+ and checkwps now gets
made with -std=gnu99 (it eats all the GCCOPTS) like the rest of things.

Change-Id: Ie6039b17fec057a3dcb0f453d8fd5efac984df89
This commit is contained in:
Michael Sevakis 2014-08-05 21:19:07 -04:00
parent bb7700928a
commit 29f5385263
3 changed files with 15 additions and 8 deletions

View file

@ -38,19 +38,21 @@ int viewport_get_nb_lines(const struct viewport *vp);
#define THEME_LISTS (BIT_N(3))
#define THEME_ALL (~(0u))
#ifndef __PCTOOL__
/*
* Initialize the viewportmanager, which in turns initializes the UI vp and
* statusbar stuff
*/
void viewportmanager_init(void) INIT_ATTR;
/* These are needed in checkwps */
void viewport_set_defaults(struct viewport *vp,
const enum screen_type screen);
void viewport_set_fullscreen(struct viewport *vp,
const enum screen_type screen);
int get_viewport_default_colour(enum screen_type screen, bool fgcolour);
#ifndef __PCTOOL__
/*
* Initialize the viewportmanager, which in turns initializes the UI vp and
* statusbar stuff
*/
void viewportmanager_init(void) INIT_ATTR;
#ifdef HAVE_LCD_BITMAP
void viewportmanager_theme_enable(enum screen_type screen, bool enable,
struct viewport *viewport);