From 18f0ba003c0f71c086eb83f8c2bb3f67dba881be Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Wed, 26 Dec 2012 18:01:19 +0100 Subject: Revert 64d048be. It breaks h300. HAVE_USB_CHARGING_ENABLE is not only used for software usb, so checking for HAVE_USBSTACK is wrong. Change-Id: I422796b517c262f33f35623e992434219e288424 --- apps/menus/settings_menu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/menus/settings_menu.c') diff --git a/apps/menus/settings_menu.c b/apps/menus/settings_menu.c index 23807e2adc..95423a20fa 100644 --- a/apps/menus/settings_menu.c +++ b/apps/menus/settings_menu.c @@ -173,7 +173,7 @@ MENUITEM_SETTING(battery_capacity, &global_settings.battery_capacity, NULL); #if BATTERY_TYPES_COUNT > 1 MENUITEM_SETTING(battery_type, &global_settings.battery_type, NULL); #endif -#if defined (HAVE_USBSTACK) && defined(HAVE_USB_CHARGING_ENABLE) +#ifdef HAVE_USB_CHARGING_ENABLE static int usbcharging_callback(int action,const struct menu_item_ex *this_item) { (void)this_item; @@ -194,7 +194,7 @@ MAKE_MENU(battery_menu, ID2P(LANG_BATTERY_MENU), 0, Icon_NOICON, #if BATTERY_TYPES_COUNT > 1 &battery_type, #endif -#if defined (HAVE_USBSTACK) && defined(HAVE_USB_CHARGING_ENABLE) +#ifdef HAVE_USB_CHARGING_ENABLE &usb_charging, #endif ); -- cgit v1.2.3