From 865b2565f0cec92cad7bc5e5231c7c9c44225245 Mon Sep 17 00:00:00 2001 From: Frank Gevaerts Date: Sun, 21 Dec 2008 17:07:48 +0000 Subject: [PATCH] remove "reconnect usb storage" debug item from the release git-svn-id: svn://svn.rockbox.org/rockbox/branches/v3_1@19541 a1c6a512-1295-4272-9138-f99709370657 --- apps/debug_menu.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 0db0e5a471..dbb686bb8f 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -2427,15 +2427,6 @@ static bool logf_usb_serial(void) } #endif -#if defined(HAVE_USBSTACK) && defined(USB_STORAGE) -static bool usb_reconnect(void) -{ - splash(HZ, "Reconnect mass storage"); - usb_storage_reconnect(); - return false; -} -#endif - #if CONFIG_USBOTG == USBOTG_ISP1583 extern int dbg_usb_num_items(void); extern char* dbg_usb_item(int selected_item, void *data, char *buffer, size_t buffer_len); @@ -2572,9 +2563,6 @@ static const struct the_menu_item menuitems[] = { #if defined(HAVE_USBSTACK) && defined(ROCKBOX_HAS_LOGF) && defined(USB_SERIAL) {"logf over usb",logf_usb_serial }, #endif -#if defined(HAVE_USBSTACK) && defined(USB_STORAGE) - {"reconnect usb storage",usb_reconnect}, -#endif #ifdef CPU_BOOST_LOGGING {"cpu_boost log",cpu_boost_log}, #endif