From a7a60fc6df0953da7f3153b3d56414fd4ccf968e Mon Sep 17 00:00:00 2001 From: Pasi Miettinen Date: Mon, 19 Feb 2024 16:28:34 +0200 Subject: [PATCH] Fix header guards --- src/portable/chipidea/ci_hs/ci_hs_kinetis_k28f.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/portable/chipidea/ci_hs/ci_hs_kinetis_k28f.h b/src/portable/chipidea/ci_hs/ci_hs_kinetis_k28f.h index e4aa84405c..7936833aaf 100644 --- a/src/portable/chipidea/ci_hs/ci_hs_kinetis_k28f.h +++ b/src/portable/chipidea/ci_hs/ci_hs_kinetis_k28f.h @@ -24,8 +24,8 @@ * This file is part of the TinyUSB stack. */ -#ifndef _CI_HS_MCX_H_ -#define _CI_HS_MCX_H_ +#ifndef _CI_HS_KINETIS_K28F_H_ +#define _CI_HS_KINETIS_K28F_H_ #include "fsl_device_registers.h" @@ -44,5 +44,4 @@ TU_ATTR_ALWAYS_INLINE static inline ci_hs_regs_t* CI_HS_REG(uint8_t port) { #define CI_HCD_INT_ENABLE(_p) NVIC_EnableIRQ (_ci_controller[_p].irqnum) #define CI_HCD_INT_DISABLE(_p) NVIC_DisableIRQ(_ci_controller[_p].irqnum) - #endif