From 19acc8ad4e1d83c867f781b6c25467cd7f63d9fc Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 21 Jul 2017 08:35:01 -0600 Subject: [PATCH] apps/system/composite: Remove references to USBMSC. There still dependencies on CDC/ACM in the serial USB trace output. That really should be removed. --- system/composite/composite.h | 8 -------- system/composite/composite_main.c | 1 - 2 files changed, 9 deletions(-) diff --git a/system/composite/composite.h b/system/composite/composite.h index 338bc65d4..299c931cd 100644 --- a/system/composite/composite.h +++ b/system/composite/composite.h @@ -65,14 +65,6 @@ # error "USB CDC/ACM serial composite device support is not enabled (CONFIG_CDCACM_COMPOSITE)" #endif -#ifndef CONFIG_USBMSC -# error "USB mass storage device support is not enabled (CONFIG_USBMSC)" -#endif - -#ifndef CONFIG_USBMSC_COMPOSITE -# error "USB mass storage composite device support is not enabled (CONFIG_USBMSC_COMPOSITE)" -#endif - /* Add-on Mass Storagte Class default values */ #ifndef CONFIG_SYSTEM_COMPOSITE_NLUNS diff --git a/system/composite/composite_main.c b/system/composite/composite_main.c index e2e97794e..d3d9d9277 100644 --- a/system/composite/composite_main.c +++ b/system/composite/composite_main.c @@ -52,7 +52,6 @@ #include #include #include -#include #include #include "composite.h"