From 83f5310f9bbe9a7b472cb1f9a0ac5b9565921d6a Mon Sep 17 00:00:00 2001 From: Ross Owen Date: Wed, 30 Apr 2014 12:50:07 +0100 Subject: [PATCH] Removed use of NULLABLE_RESOURCE macro from endpoint0.c. Causes syntax high-light issue in XTC. --- module_usb_audio/endpoint0/endpoint0.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module_usb_audio/endpoint0/endpoint0.c b/module_usb_audio/endpoint0/endpoint0.c index a62f6caa..246eb506 100755 --- a/module_usb_audio/endpoint0/endpoint0.c +++ b/module_usb_audio/endpoint0/endpoint0.c @@ -143,9 +143,9 @@ const unsigned g_dataFormat_In[INPUT_FORMAT_COUNT] = {STREAM_FORMAT_INPUT_1_DATA /* Endpoint 0 function. Handles all requests to the device */ void Endpoint0(chanend c_ep0_out, chanend c_ep0_in, chanend c_audioControl, - NULLABLE_RESOURCE(chanend, c_mix_ctl), - NULLABLE_RESOURCE(chanend, c_clk_ctl), - NULLABLE_RESOURCE(chanend, c_usb_test)) + chanend c_mix_ctl, + chanend c_clk_ctl, + chanend c_usb_test) { USB_SetupPacket_t sp; XUD_ep ep0_out = XUD_InitEp(c_ep0_out);