Skip to content

Commit be8d660

Browse files
iabdalkaderdpgeorge
authored andcommitted
mimxrt: Fix header include guard names.
Signed-off-by: iabdalkader <[email protected]>
1 parent 0432f73 commit be8d660

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

ports/mimxrt/cyw43_configport.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2525
* THE SOFTWARE.
2626
*/
27-
#ifndef MICROPY_INCLUDED_STM32_CYW43_CONFIGPORT_H
28-
#define MICROPY_INCLUDED_STM32_CYW43_CONFIGPORT_H
27+
#ifndef MICROPY_INCLUDED_MIMXRT_CYW43_CONFIGPORT_H
28+
#define MICROPY_INCLUDED_MIMXRT_CYW43_CONFIGPORT_H
2929

3030
// The board-level config will be included here, so it can set some CYW43 values.
3131
#include "py/mpconfig.h"
@@ -152,4 +152,4 @@ static inline int cyw43_sdio_transfer_cmd53(bool write, uint32_t block_size, uin
152152

153153
#define CYW43_EVENT_POLL_HOOK MICROPY_EVENT_POLL_HOOK
154154

155-
#endif // MICROPY_INCLUDED_STM32_CYW43_CONFIGPORT_H
155+
#endif // MICROPY_INCLUDED_MIMXRT_CYW43_CONFIGPORT_H

ports/mimxrt/pendsv.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2424
* THE SOFTWARE.
2525
*/
26-
#ifndef MICROPY_INCLUDED_STM32_PENDSV_H
27-
#define MICROPY_INCLUDED_STM32_PENDSV_H
26+
#ifndef MICROPY_INCLUDED_MIMXRT_PENDSV_H
27+
#define MICROPY_INCLUDED_MIMXRT_PENDSV_H
2828

2929
enum {
3030
PENDSV_DISPATCH_SOFT_TIMER, // For later & for having at least one entry
@@ -45,4 +45,4 @@ typedef void (*pendsv_dispatch_t)(void);
4545
void pendsv_init(void);
4646
void pendsv_schedule_dispatch(size_t slot, pendsv_dispatch_t f);
4747

48-
#endif // MICROPY_INCLUDED_STM32_PENDSV_H
48+
#endif // MICROPY_INCLUDED_MIMXRT_PENDSV_H

0 commit comments

Comments
 (0)