aarch64: Fix #include guards
Change-Id: I9445b04a210dcde5f8a7cf1560ef23eb53149178 Signed-off-by: Marc Schink <openocd-dev@marcschink.de> Reviewed-on: http://openocd.zylin.com/3975 Tested-by: jenkins Reviewed-by: Andreas Färber <afaerber@suse.de> Reviewed-by: Matthias Welwarsky <matthias@welwarsky.de> Reviewed-by: Paul Fertser <fercerpav@gmail.com>
This commit is contained in:
parent
091c378728
commit
7c85165bc1
|
@ -16,8 +16,8 @@
|
|||
* Free Software Foundation, Inc., *
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef AARCH64_H
|
||||
#define AARCH64_H
|
||||
#ifndef OPENOCD_TARGET_AARCH64_H
|
||||
#define OPENOCD_TARGET_AARCH64_H
|
||||
|
||||
#include "armv8.h"
|
||||
|
||||
|
@ -75,4 +75,4 @@ target_to_aarch64(struct target *target)
|
|||
return container_of(target->arch_info, struct aarch64_common, armv8_common.arm);
|
||||
}
|
||||
|
||||
#endif /* AARCH64_H */
|
||||
#endif /* OPENOCD_TARGET_AARCH64_H */
|
||||
|
|
|
@ -310,4 +310,4 @@ void armv8_select_reg_access(struct armv8_common *armv8, bool is_aarch64);
|
|||
|
||||
extern const struct command_registration armv8_command_handlers[];
|
||||
|
||||
#endif
|
||||
#endif /* OPENOCD_TARGET_ARMV8_H */
|
||||
|
|
Loading…
Reference in New Issue