From 90172f9d72c2fcafa4701609ddfc6d65cfb84994 Mon Sep 17 00:00:00 2001 From: Alexandru Gagniuc Date: Wed, 8 May 2013 11:22:35 -0500 Subject: [PATCH] lm4f: Fix include guard in nvic.h The lm4f/nvic.h include guard was wrongfully named LIBOPENCM3_LM3S_NVIC_H. This caused the lm3s/nvic.h include a few lines down to not be compiled. Rename the inlcude guard to the more appropriate LIBOPENCM3_LM4F_NVIC_H. Signed-off-by: Alexandru Gagniuc --- include/libopencm3/lm4f/nvic.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/libopencm3/lm4f/nvic.h b/include/libopencm3/lm4f/nvic.h index febb7a94..7bf37ca6 100644 --- a/include/libopencm3/lm4f/nvic.h +++ b/include/libopencm3/lm4f/nvic.h @@ -32,8 +32,8 @@ LGPL License Terms @ref lgpl_license * along with this library. If not, see . */ -#ifndef LIBOPENCM3_LM3S_NVIC_H -#define LIBOPENCM3_LM3S_NVIC_H +#ifndef LIBOPENCM3_LM4F_NVIC_H +#define LIBOPENCM3_LM4F_NVIC_H /**@{*/ @@ -50,4 +50,4 @@ LGPL License Terms @ref lgpl_license /**@}*/ -#endif /* LIBOPENCM3_LM3S_NVIC_H */ +#endif /* LIBOPENCM3_LM4F_NVIC_H */