summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/ibasso
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/ibasso')
-rw-r--r--firmware/target/hosted/ibasso/usb-ibasso.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/firmware/target/hosted/ibasso/usb-ibasso.c b/firmware/target/hosted/ibasso/usb-ibasso.c
index c1ac7b222a..9889318cf2 100644
--- a/firmware/target/hosted/ibasso/usb-ibasso.c
+++ b/firmware/target/hosted/ibasso/usb-ibasso.c
@@ -21,7 +21,6 @@
21 * 21 *
22 ****************************************************************************/ 22 ****************************************************************************/
23 23
24
25#include <stdlib.h> 24#include <stdlib.h>
26 25
27#include "config.h" 26#include "config.h"
@@ -31,7 +30,6 @@
31#include "debug-ibasso.h" 30#include "debug-ibasso.h"
32#include "usb-ibasso.h" 31#include "usb-ibasso.h"
33 32
34
35static void usb_enable_adb(void) 33static void usb_enable_adb(void)
36{ 34{
37 TRACE; 35 TRACE;
@@ -46,7 +44,6 @@ static void usb_enable_adb(void)
46 DEBUGF("ERROR %s: No command processor available.", __func__); 44 DEBUGF("ERROR %s: No command processor available.", __func__);
47} 45}
48 46
49
50static void usb_enable_mass_storage(void) 47static void usb_enable_mass_storage(void)
51{ 48{
52 TRACE; 49 TRACE;
@@ -89,3 +86,8 @@ void ibasso_set_usb_mode(int mode)
89 } 86 }
90 } 87 }
91} 88}
89
90bool usb_powered_only(void)
91{
92 return false;
93}