aboutsummaryrefslogtreecommitdiff
path: root/hw/misc/goldfish_battery.c
diff options
context:
space:
mode:
authorGreg Bellows <greg.bellows@linaro.org>2014-11-11 14:29:16 -0600
committerGreg Bellows <greg.bellows@linaro.org>2015-01-15 16:18:49 -0600
commit944976390ef86e0b4e1b6e03d9edc20cee0e43bf (patch)
treeb7ef468653f054f2d0e9067a19c41b77f28e8fc9 /hw/misc/goldfish_battery.c
parent0ebf1571a1fcb54833b8a885baf4dbbe91e48eac (diff)
android-console: Add header for battery externs
Added goldfish_battery.h to share power and battery constants and externs between the Goldfish battery code and the Android console code. Signed-off-by: Greg Bellows <greg.bellows@linaro.org>
Diffstat (limited to 'hw/misc/goldfish_battery.c')
-rw-r--r--hw/misc/goldfish_battery.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/hw/misc/goldfish_battery.c b/hw/misc/goldfish_battery.c
index 8e08df8e6..5eb39a5d9 100644
--- a/hw/misc/goldfish_battery.c
+++ b/hw/misc/goldfish_battery.c
@@ -12,6 +12,7 @@
#include "hw/hw.h"
#include "hw/sysbus.h"
#include "qemu/error-report.h"
+#include "hw/misc/goldfish_battery.h"
enum {
/* status register */
@@ -30,9 +31,6 @@ enum {
BATTERY_INT_MASK = BATTERY_STATUS_CHANGED | AC_STATUS_CHANGED,
};
-const uint32_t POWER_SUPPLY_STATUS_CHARGING = 1;
-const uint32_t POWER_SUPPLY_HEALTH_GOOD = 1;
-
#define TYPE_GOLDFISH_BATTERY "goldfish_battery"
#define GOLDFISH_BATTERY(obj) OBJECT_CHECK(struct goldfish_battery_state, (obj), TYPE_GOLDFISH_BATTERY)