headers: Fix headers across the project
Any word started with underscore followed by and uppercase letter or a second underscore is a reserved word according with C99. Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
This commit is contained in:
parent
a7fffa9e00
commit
67ca176754
505 changed files with 1463 additions and 1458 deletions
|
@ -41,8 +41,8 @@
|
|||
|
||||
#include <version.h>
|
||||
|
||||
#ifndef USB_COMMON_H_
|
||||
#define USB_COMMON_H_
|
||||
#ifndef ZEPHYR_INCLUDE_USB_USB_COMMON_H_
|
||||
#define ZEPHYR_INCLUDE_USB_USB_COMMON_H_
|
||||
|
||||
#define BCD(x) ((((x) / 10) << 4) | ((x) / 10))
|
||||
|
||||
|
@ -198,4 +198,4 @@ struct usb_ep_descriptor {
|
|||
u8_t bInterval;
|
||||
} __packed;
|
||||
|
||||
#endif /* USB_COMMON_H_ */
|
||||
#endif /* ZEPHYR_INCLUDE_USB_USB_COMMON_H_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue