Add a missing #include, make a function static, make touchpad_set_buttonlight implementation and declaration consistent
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24281 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
99a7cdc46c
commit
552835ebe2
4 changed files with 15 additions and 13 deletions
|
@ -145,7 +145,7 @@ static int parse_setting_and_lang(const char *wps_bufptr,
|
|||
struct wps_token *token, struct wps_data *wps_data);
|
||||
|
||||
|
||||
int parse_languagedirection(const char *wps_bufptr,
|
||||
static int parse_languagedirection(const char *wps_bufptr,
|
||||
struct wps_token *token, struct wps_data *wps_data)
|
||||
{
|
||||
(void)wps_bufptr;
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
#include "lang.h"
|
||||
#include "misc.h"
|
||||
#include "usbstack/usb_hid.h"
|
||||
#include "usb_keymaps.h"
|
||||
/*#define LOGF_ENABLE*/
|
||||
#include "logf.h"
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
#include "system.h"
|
||||
#include "kernel.h"
|
||||
#include "button-target.h"
|
||||
#include "synaptics-mep.h"
|
||||
|
||||
/*#define LOGF_ENABLE*/
|
||||
#include "logf.h"
|
||||
|
@ -579,7 +580,7 @@ int touchpad_read_device(char *data, int len)
|
|||
return val;
|
||||
}
|
||||
|
||||
int touchpad_set_buttonlights(int led_mask, char brightness)
|
||||
int touchpad_set_buttonlights(unsigned int led_mask, char brightness)
|
||||
{
|
||||
char data[6];
|
||||
int val = 0;
|
||||
|
|
|
@ -23,6 +23,6 @@
|
|||
|
||||
int touchpad_init(void);
|
||||
int touchpad_read_device(char *data, int len);
|
||||
int touchpad_set_buttonlights(char led_mask, char brightness);
|
||||
int touchpad_set_buttonlights(unsigned int led_mask, char brightness);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue