Remove header guards. Since these files only include initialisation lists, no guard is needed. For UAC1 operation, one file has to be included twice, so including a guard breaks the implementation.

This commit is contained in:
mbanth
2021-05-07 16:46:37 +01:00
parent 7d7ec6858d
commit 35fe4fadeb
3 changed files with 0 additions and 15 deletions

View File

@@ -7,9 +7,6 @@
* This file lists the contents of the HID Endpoint descriptor returned during enumeration.
*/
#ifndef _HID_DESCRIPTOR_CONTENTS_
#define _HID_DESCRIPTOR_CONTENTS_
#if (AUDIO_CLASS == 1)
/* HID descriptor */
@@ -48,5 +45,3 @@
#else
#error "Unknown Audio Class"
#endif
#endif // _HID_DESCRIPTOR_CONTENTS_

View File

@@ -7,9 +7,6 @@
* This file lists the contents of the HID Endpoint descriptor returned during enumeration.
*/
#ifndef _HID_ENDPOINT_DESCRIPTOR_CONTENTS_
#define _HID_ENDPOINT_DESCRIPTOR_CONTENTS_
#include "descriptor_defs.h"
#if (AUDIO_CLASS == 1)
@@ -39,5 +36,3 @@
#else
#error "Unknown Audio Class"
#endif
#endif // _HID_ENDPOINT_DESCRIPTOR_CONTENTS_

View File

@@ -7,9 +7,6 @@
* This file lists the contents of the HID Interface descriptor returned during enumeration.
*/
#ifndef _HID_INTERFACE_DESCRIPTOR_CONTENTS_
#define _HID_INTERFACE_DESCRIPTOR_CONTENTS_
#include "descriptor_defs.h"
#if (AUDIO_CLASS == 1)
@@ -44,5 +41,3 @@
#else
#error "Unknown Audio Class"
#endif
#endif // _HID_INTERFACE_DESCRIPTOR_CONTENTS_