From 5dbbae6d9c27805e47ff41c0ebae40834be81971 Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Wed, 10 Oct 2012 16:14:22 -0700 Subject: [PATCH] Removed unused functions to silence warnings. --- firmware/usb_performance/usb.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/firmware/usb_performance/usb.c b/firmware/usb_performance/usb.c index 5054160b..535cb52d 100644 --- a/firmware/usb_performance/usb.c +++ b/firmware/usb_performance/usb.c @@ -195,7 +195,7 @@ void usb_endpoint_prime( USB0_ENDPTPRIME = USB0_ENDPTPRIME_PERB(1 << endpoint_number); } } - +/* static bool usb_endpoint_is_priming( const usb_endpoint_t* const endpoint ) { @@ -206,7 +206,7 @@ static bool usb_endpoint_is_priming( return USB0_ENDPTPRIME & USB0_ENDPTPRIME_PERB(1 << endpoint_number); } } - +*/ void usb_endpoint_flush( const usb_endpoint_t* const endpoint ) { @@ -217,7 +217,7 @@ void usb_endpoint_flush( usb_flush_primed_endpoints(USB0_ENDPTFLUSH_FERB(1 << endpoint_number)); } } - +/* static bool usb_endpoint_is_flushing( const usb_endpoint_t* const endpoint ) { @@ -228,7 +228,7 @@ static bool usb_endpoint_is_flushing( return USB0_ENDPTFLUSH & USB0_ENDPTFLUSH_FERB(1 << endpoint_number); } } - +*/ bool usb_endpoint_is_ready( const usb_endpoint_t* const endpoint ) {