1
0
Fork 0
forked from len0rd/rockbox

powermgmt: Small cleanups to battery capacity code

- Don't include the 'battery capacity' setting unless the
  target allows changing it.
- Clean up the preprocessor conditionals used to check for
  variable battery capacity support.
- Don't use a variable for battery capacity unless it is
  actually needed.

Change-Id: I3d8a338f107014f2c5098bc0a44ef0cfb4df9356
This commit is contained in:
Aidan MacDonald 2021-11-29 20:59:05 +00:00
parent 204be7f637
commit e3ee1908dd
8 changed files with 26 additions and 14 deletions

View file

@ -608,10 +608,9 @@ struct user_settings
/* power settings */
int poweroff; /* idle power off timer */
#if BATTERY_CAPACITY_DEFAULT > 0
#if BATTERY_CAPACITY_INC > 0
int battery_capacity; /* in mAh */
#endif
#if BATTERY_TYPES_COUNT > 1
int battery_type; /* for units which can take multiple types (Ondio). */
#endif