mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-06 14:48:06 +00:00
power: ab8500_fg.c: Remove unused function
Remove the function ab8500_fg_reinit() that is not used anywhere. This was partially found by using a static code analysis program called cppcheck. Signed-off-by: Rickard Strandqvist <rickard_strandqvist@spectrumdigital.se> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Sebastian Reichel <sre@kernel.org>
This commit is contained in:
parent
a7c45b6c28
commit
85cdf36e11
2 changed files with 0 additions and 15 deletions
|
@ -2435,20 +2435,6 @@ static void ab8500_fg_reinit_work(struct work_struct *work)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* ab8500_fg_reinit() - forces FG algorithm to reinitialize with current values
|
|
||||||
*
|
|
||||||
* This function can be used to force the FG algorithm to recalculate a new
|
|
||||||
* voltage based battery capacity.
|
|
||||||
*/
|
|
||||||
void ab8500_fg_reinit(void)
|
|
||||||
{
|
|
||||||
struct ab8500_fg *di = ab8500_fg_get();
|
|
||||||
/* User won't be notified if a null pointer returned. */
|
|
||||||
if (di != NULL)
|
|
||||||
queue_delayed_work(di->fg_wq, &di->fg_reinit_work, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Exposure to the sysfs interface */
|
/* Exposure to the sysfs interface */
|
||||||
|
|
||||||
struct ab8500_fg_sysfs_entry {
|
struct ab8500_fg_sysfs_entry {
|
||||||
|
|
|
@ -461,7 +461,6 @@ struct ab8500_fg;
|
||||||
#ifdef CONFIG_AB8500_BM
|
#ifdef CONFIG_AB8500_BM
|
||||||
extern struct abx500_bm_data ab8500_bm_data;
|
extern struct abx500_bm_data ab8500_bm_data;
|
||||||
|
|
||||||
void ab8500_fg_reinit(void);
|
|
||||||
void ab8500_charger_usb_state_changed(u8 bm_usb_state, u16 mA);
|
void ab8500_charger_usb_state_changed(u8 bm_usb_state, u16 mA);
|
||||||
struct ab8500_btemp *ab8500_btemp_get(void);
|
struct ab8500_btemp *ab8500_btemp_get(void);
|
||||||
int ab8500_btemp_get_batctrl_temp(struct ab8500_btemp *btemp);
|
int ab8500_btemp_get_batctrl_temp(struct ab8500_btemp *btemp);
|
||||||
|
|
Loading…
Add table
Reference in a new issue