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 <mr.nuke.me@gmail.com>
This commit is contained in:
Alexandru Gagniuc 2013-05-08 11:22:35 -05:00
parent f4eca5400e
commit 90172f9d72
1 changed files with 3 additions and 3 deletions

View File

@ -32,8 +32,8 @@ LGPL License Terms @ref lgpl_license
* along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#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 */