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:
Flavio Ceolin 2018-09-14 10:43:44 -07:00 committed by Anas Nashif
commit 67ca176754
505 changed files with 1463 additions and 1458 deletions

View file

@ -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_ */