1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #5571 from zhuoshuguo/fix_include_guards

cpu/stellaris: fix header include guards.
This commit is contained in:
Joakim Nohlgård 2016-07-04 19:46:04 +02:00 committed by GitHub
commit 73a3fb7b2a
13 changed files with 39 additions and 39 deletions

View File

@ -37,8 +37,8 @@
//
//*****************************************************************************
#ifndef __I2C_H__
#define __I2C_H__
#ifndef STELLARIS_I2C_H_
#define STELLARIS_I2C_H_
//*****************************************************************************
//
@ -221,4 +221,4 @@ extern unsigned long I2CSlaveStatus(unsigned long ulBase);
}
#endif
#endif // __I2C_H__
#endif /* STELLARIS_I2C_H_ */

View File

@ -37,8 +37,8 @@
//
//*****************************************************************************
#ifndef __INTERRUPT_H__
#define __INTERRUPT_H__
#ifndef STELLARIS_INTERRUPT_H_
#define STELLARIS_INTERRUPT_H_
//*****************************************************************************
//
@ -90,4 +90,4 @@ extern unsigned long IntPriorityMaskGet(void);
}
#endif
#endif // __INTERRUPT_H__
#endif /* STELLARIS_INTERRUPT_H_ */

View File

@ -37,8 +37,8 @@
//
//*****************************************************************************
#ifndef __PIN_MAP_H__
#define __PIN_MAP_H__
#ifndef STELLARIS_PIN_MAP_H_
#define STELLARIS_PIN_MAP_H_
#ifdef __cplusplus
extern "C" {
@ -454,4 +454,4 @@ extern "C" {
}
#endif
#endif // __PIN_MAP_H__
#endif /* STELLARIS_PIN_MAP_H_ */

View File

@ -37,8 +37,8 @@
//
//*****************************************************************************
#ifndef __PWM_H__
#define __PWM_H__
#ifndef STELLARIS_PWM_H_
#define STELLARIS_PWM_H_
//*****************************************************************************
//
@ -295,4 +295,4 @@ extern void PWMGenFaultClear(unsigned long ulBase, unsigned long ulGen,
}
#endif
#endif // __PWM_H__
#endif /* STELLARIS_PWM_H_ */

View File

@ -37,8 +37,8 @@
//
//*****************************************************************************
#ifndef __ROM_H__
#define __ROM_H__
#ifndef STELLARIS_ROM_H_
#define STELLARIS_ROM_H_
#ifdef __cplusplus
extern "C" {
@ -6749,4 +6749,4 @@ extern "C" {
}
#endif
#endif // __ROM_H__
#endif /* STELLARIS_ROM_H_ */

View File

@ -38,8 +38,8 @@
//
//*****************************************************************************
#ifndef __ROM_MAP_H__
#define __ROM_MAP_H__
#ifndef STELLARIS_ROM_MAP_H_
#define STELLARIS_ROM_MAP_H_
#ifdef __cplusplus
extern "C" {
@ -5080,4 +5080,4 @@ extern "C" {
}
#endif
#endif // __ROM_MAP_H__
#endif /* STELLARIS_ROM_MAP_H_ */

View File

@ -37,8 +37,8 @@
//
//*****************************************************************************
#ifndef __SSI_H__
#define __SSI_H__
#ifndef STELLARIS_SSI_H_
#define STELLARIS_SSI_H_
//*****************************************************************************
//
@ -148,4 +148,4 @@ extern unsigned long SSIClockSourceGet(unsigned long ulBase);
}
#endif
#endif // __SSI_H__
#endif /* STELLARIS_SSI_H_ */

View File

@ -37,8 +37,8 @@
//
//*****************************************************************************
#ifndef __SYSCTL_H__
#define __SYSCTL_H__
#ifndef STELLARIS_SYSCTL_H_
#define STELLARIS_SYSCTL_H_
//*****************************************************************************
//
@ -639,4 +639,4 @@ extern unsigned long SysCtlI2SMClkSet(unsigned long ulInputClock,
}
#endif
#endif // __SYSCTL_H__
#endif /* STELLARIS_SYSCTL_H_ */

View File

@ -37,8 +37,8 @@
//
//*****************************************************************************
#ifndef __SYSEXC_H__
#define __SYSEXC_H__
#ifndef STELLARIS_SYSEXC_H_
#define STELLARIS_SYSEXC_H_
//*****************************************************************************
//
@ -86,4 +86,4 @@ extern void SysExcIntClear(unsigned long ulIntFlags);
}
#endif
#endif // __SYSEXC_H__
#endif /* STELLARIS_SYSEXC_H_ */

View File

@ -37,8 +37,8 @@
//
//*****************************************************************************
#ifndef __SYSTICK_H__
#define __SYSTICK_H__
#ifndef STELLARIS_SYSTICK_H_
#define STELLARIS_SYSTICK_H_
//*****************************************************************************
//
@ -75,4 +75,4 @@ extern unsigned long SysTickValueGet(void);
}
#endif
#endif // __SYSTICK_H__
#endif /* STELLARIS_SYSTICK_H_ */

View File

@ -37,8 +37,8 @@
//
//*****************************************************************************
#ifndef __TIMER_H__
#define __TIMER_H__
#ifndef STELLARIS_TIMER_H_
#define STELLARIS_TIMER_H_
//*****************************************************************************
//
@ -233,4 +233,4 @@ extern void TimerQuiesce(unsigned long ulBase);
}
#endif
#endif // __TIMER_H__
#endif /* STELLARIS_TIMER_H_ */

View File

@ -37,8 +37,8 @@
//
//*****************************************************************************
#ifndef __UART_H__
#define __UART_H__
#ifndef STELLARIS_UART_H_
#define STELLARIS_UART_H_
//*****************************************************************************
//
@ -272,4 +272,4 @@ extern void UART9BitAddrSend(unsigned long ulBase, unsigned char ucAddr);
}
#endif
#endif // __UART_H__
#endif /* STELLARIS_UART_H_ */

View File

@ -37,8 +37,8 @@
//
//*****************************************************************************
#ifndef __WATCHDOG_H__
#define __WATCHDOG_H__
#ifndef STELLARIS_WATCHDOG_H_
#define STELLARIS_WATCHDOG_H_
//*****************************************************************************
//
@ -92,4 +92,4 @@ extern void WatchdogStallDisable(unsigned long ulBase);
}
#endif
#endif // __WATCHDOG_H__
#endif /* STELLARIS_WATCHDOG_H_ */