summaryrefslogtreecommitdiff
path: root/src/linux/up-device-supply.c
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2013-10-10 12:16:31 +0200
committerBastien Nocera <hadess@hadess.net>2013-10-14 10:42:55 +0200
commitc842f1a53ec5f1903bd911e0eee2383b0fc5503a (patch)
treea814d18ce3dfae9436a6c4e998cd324826907d60 /src/linux/up-device-supply.c
parent3ed22cd32b5b98b032dd6d9489acd13c65ede0f1 (diff)
downloadupower-c842f1a53ec5f1903bd911e0eee2383b0fc5503a.tar.gz
Remove obsolete battery recall properties
The recalls for that broken batch of Sony batteries dates back from 2006. All the batteries that could have been recalled have now been recalled, and somebody particularly interested in supporting them can match the batteries using the old rules file, in a user session or a separate daemon.
Diffstat (limited to 'src/linux/up-device-supply.c')
-rw-r--r--src/linux/up-device-supply.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/linux/up-device-supply.c b/src/linux/up-device-supply.c
index 8020277..53ab977 100644
--- a/src/linux/up-device-supply.c
+++ b/src/linux/up-device-supply.c
@@ -505,9 +505,6 @@ up_device_supply_refresh_battery (UpDeviceSupply *supply)
gchar *manufacturer = NULL;
gchar *model_name = NULL;
gchar *serial_number = NULL;
- gboolean recall_notice;
- const gchar *recall_vendor = NULL;
- const gchar *recall_url = NULL;
UpDaemon *daemon;
gboolean ac_online = FALSE;
gboolean has_ac = FALSE;
@@ -562,13 +559,6 @@ up_device_supply_refresh_battery (UpDeviceSupply *supply)
up_device_supply_make_safe_string (model_name);
up_device_supply_make_safe_string (serial_number);
- /* are we possibly recalled by the vendor? */
- recall_notice = g_udev_device_has_property (native, "UPOWER_RECALL_NOTICE");
- if (recall_notice) {
- recall_vendor = g_udev_device_get_property (native, "UPOWER_RECALL_VENDOR");
- recall_url = g_udev_device_get_property (native, "UPOWER_RECALL_URL");
- }
-
g_object_set (device,
"vendor", manufacturer,
"model", model_name,
@@ -576,9 +566,6 @@ up_device_supply_refresh_battery (UpDeviceSupply *supply)
"is-rechargeable", TRUE, /* assume true for laptops */
"has-history", TRUE,
"has-statistics", TRUE,
- "recall-notice", recall_notice,
- "recall-vendor", recall_vendor,
- "recall-url", recall_url,
NULL);
/* these don't change at runtime */