Make #include guard naming consistent
Change-Id: Ie13e8af0bb74ed290f811dcad64ad06c9d8cb4fa Signed-off-by: Marc Schink <openocd-dev@marcschink.de> Reviewed-on: http://openocd.zylin.com/2956 Tested-by: jenkins Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
This commit is contained in:
committed by
Andreas Fritiofson
parent
d0e763ac7e
commit
d4b7cbff88
@@ -19,8 +19,8 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef _HL_INTERFACE
|
||||
#define _HL_INTERFACE
|
||||
#ifndef OPENOCD_JTAG_HLA_HLA_INTERFACE_H
|
||||
#define OPENOCD_JTAG_HLA_HLA_INTERFACE_H
|
||||
|
||||
/** */
|
||||
struct target;
|
||||
@@ -65,4 +65,4 @@ int hl_interface_init_target(struct target *t);
|
||||
int hl_interface_init_reset(void);
|
||||
int hl_interface_override_target(const char **targetname);
|
||||
|
||||
#endif /* _HL_INTERFACE */
|
||||
#endif /* OPENOCD_JTAG_HLA_HLA_INTERFACE_H */
|
||||
|
||||
@@ -19,8 +19,8 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef _HL_LAYOUT_H
|
||||
#define _HL_LAYOUT_H
|
||||
#ifndef OPENOCD_JTAG_HLA_HLA_LAYOUT_H
|
||||
#define OPENOCD_JTAG_HLA_HLA_LAYOUT_H
|
||||
|
||||
#include <target/armv7m_trace.h>
|
||||
|
||||
@@ -125,4 +125,4 @@ const struct hl_layout *hl_layout_get_list(void);
|
||||
/** */
|
||||
int hl_layout_init(struct hl_interface_s *adapter);
|
||||
|
||||
#endif /* _HL_LAYOUT_H */
|
||||
#endif /* OPENOCD_JTAG_HLA_HLA_LAYOUT_H */
|
||||
|
||||
@@ -19,10 +19,10 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef _HL_TCL_
|
||||
#define _HL_TCL_
|
||||
#ifndef OPENOCD_JTAG_HLA_HLA_TCL_H
|
||||
#define OPENOCD_JTAG_HLA_HLA_TCL_H
|
||||
|
||||
/** */
|
||||
int jim_hl_newtap(Jim_Interp *interp, int argc, Jim_Obj * const *argv);
|
||||
|
||||
#endif /* _HL_TCL_ */
|
||||
#endif /* OPENOCD_JTAG_HLA_HLA_TCL_H */
|
||||
|
||||
@@ -19,8 +19,8 @@
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef _HL_TRANSPORT
|
||||
#define _HL_TRANSPORT
|
||||
#ifndef OPENOCD_JTAG_HLA_HLA_TRANSPORT_H
|
||||
#define OPENOCD_JTAG_HLA_HLA_TRANSPORT_H
|
||||
|
||||
enum hl_transports {
|
||||
HL_TRANSPORT_UNKNOWN = 0,
|
||||
@@ -29,4 +29,4 @@ enum hl_transports {
|
||||
HL_TRANSPORT_SWIM
|
||||
};
|
||||
|
||||
#endif /* _HL_TRANSPORT */
|
||||
#endif /* OPENOCD_JTAG_HLA_HLA_TRANSPORT_H */
|
||||
|
||||
Reference in New Issue
Block a user