summaryrefslogtreecommitdiff
path: root/board/bob/battery.c
diff options
context:
space:
mode:
Diffstat (limited to 'board/bob/battery.c')
-rw-r--r--board/bob/battery.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/board/bob/battery.c b/board/bob/battery.c
index e81d7d4ecd..48bb1c8ce1 100644
--- a/board/bob/battery.c
+++ b/board/bob/battery.c
@@ -16,20 +16,6 @@
/* Shutdown mode parameter to write to manufacturer access register */
#define SB_SHUTDOWN_DATA 0x0010
-#ifdef BOARD_KEVIN
-static const struct battery_info info = {
- .voltage_max = 8688, /* 8700mA, round down for chg reg */
- .voltage_normal = 7600,
- .voltage_min = 6000,
- .precharge_current = 200,
- .start_charging_min_c = 0,
- .start_charging_max_c = 45,
- .charging_min_c = 0,
- .charging_max_c = 60,
- .discharging_min_c = -20,
- .discharging_max_c = 70,
-};
-#elif defined(BOARD_BOB)
static const struct battery_info info = {
.voltage_max = 8688, /* 8700mA, round down for chg reg */
.voltage_normal = 7600,
@@ -42,7 +28,6 @@ static const struct battery_info info = {
.discharging_min_c = -20,
.discharging_max_c = 60,
};
-#endif
const struct battery_info *battery_get_info(void)
{