mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-26 03:21:50 -06:00
Clean up ill-advised or unusual header guards
Leading underscores are ill-advised because such identifiers are reserved. Trailing underscores are merely ugly. Strip both. Our header guards commonly end in _H. Normalize the exceptions. Macros should be ALL_CAPS. Normalize the exception. Done with scripts/clean-header-guards.pl. include/hw/xen/interface/ and tools/virtiofsd/ left alone, because these were imported from Xen and libfuse respectively. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20220506134911.2856099-3-armbru@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
52581c718c
commit
9c0928045c
72 changed files with 232 additions and 209 deletions
|
@ -1,5 +1,5 @@
|
|||
#ifndef QEMU_CPU_FLOAT_H_
|
||||
#define QEMU_CPU_FLOAT_H_
|
||||
#ifndef QEMU_CPU_FLOAT_H
|
||||
#define QEMU_CPU_FLOAT_H
|
||||
|
||||
#include "fpu/softfloat-types.h"
|
||||
|
||||
|
@ -61,4 +61,4 @@ typedef union {
|
|||
#endif
|
||||
} CPU_QuadU;
|
||||
|
||||
#endif /* QEMU_CPU_FLOAT_H_ */
|
||||
#endif /* QEMU_CPU_FLOAT_H */
|
||||
|
|
|
@ -11,8 +11,8 @@
|
|||
* SPDX-License-Identifier: GPL-2.0
|
||||
*/
|
||||
|
||||
#ifndef _CRC_CCITT_H
|
||||
#define _CRC_CCITT_H
|
||||
#ifndef CRC_CCITT_H
|
||||
#define CRC_CCITT_H
|
||||
|
||||
extern uint16_t const crc_ccitt_table[256];
|
||||
extern uint16_t const crc_ccitt_false_table[256];
|
||||
|
@ -30,4 +30,4 @@ static inline uint16_t crc_ccitt_false_byte(uint16_t crc, const uint8_t c)
|
|||
return (crc << 8) ^ crc_ccitt_false_table[(crc >> 8) ^ c];
|
||||
}
|
||||
|
||||
#endif /* _CRC_CCITT_H */
|
||||
#endif /* CRC_CCITT_H */
|
||||
|
|
|
@ -2,8 +2,9 @@
|
|||
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
||||
* See the COPYING file in the top-level directory.
|
||||
*/
|
||||
#ifndef KEYVAL_H_
|
||||
#define KEYVAL_H_
|
||||
|
||||
#ifndef KEYVAL_H
|
||||
#define KEYVAL_H
|
||||
|
||||
QDict *keyval_parse_into(QDict *qdict, const char *params, const char *implied_key,
|
||||
bool *p_help, Error **errp);
|
||||
|
@ -11,4 +12,4 @@ QDict *keyval_parse(const char *params, const char *implied_key,
|
|||
bool *help, Error **errp);
|
||||
void keyval_merge(QDict *old, const QDict *new, Error **errp);
|
||||
|
||||
#endif /* KEYVAL_H_ */
|
||||
#endif /* KEYVAL_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue