ca4d6cfcee
This patch refactors the code in corgi_lcd.c moving it to the board specific corgi and spitz files where appropriate instead of the existing ifdef mess which hinders readability. Fix spitz_get_hsync_len() to call get_hsync_invperiod so pxafb can be compiled as a module. The confusing variables which represent the inverse horizintal sync period are renamed to "invperiod" consistently. An incorrect comment in corgi_ts.c is also corrected. Signed-off-by: Richard Purdie <rpurdie@rpsys.net> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
34 lines
722 B
C
34 lines
722 B
C
/*
|
|
* SharpSL SSP Driver
|
|
*/
|
|
|
|
unsigned long corgi_ssp_ads7846_putget(unsigned long);
|
|
unsigned long corgi_ssp_ads7846_get(void);
|
|
void corgi_ssp_ads7846_put(unsigned long data);
|
|
void corgi_ssp_ads7846_lock(void);
|
|
void corgi_ssp_ads7846_unlock(void);
|
|
void corgi_ssp_lcdtg_send (unsigned char adrs, unsigned char data);
|
|
void corgi_ssp_blduty_set(int duty);
|
|
int corgi_ssp_max1111_get(unsigned long data);
|
|
|
|
/*
|
|
* SharpSL Touchscreen Driver
|
|
*/
|
|
|
|
struct corgits_machinfo {
|
|
unsigned long (*get_hsync_invperiod)(void);
|
|
void (*put_hsync)(void);
|
|
void (*wait_hsync)(void);
|
|
};
|
|
|
|
|
|
/*
|
|
* SharpSL Backlight
|
|
*/
|
|
extern void corgibl_limit_intensity(int limit);
|
|
|
|
|
|
/*
|
|
* SharpSL Battery/PM Driver
|
|
*/
|
|
extern void sharpsl_battery_kick(void);
|