Fix names of pre-processor variables used in header file idempotence
This commit is contained in:
parent
d41008e220
commit
56f2454c86
@ -1,5 +1,5 @@
|
||||
#ifndef _CALYPSO_CLK_H
|
||||
#define _CALYPSO_CLK_H
|
||||
#ifndef __ARCH_ARM_INCLUDE_CALYPSO_CLOCK_H
|
||||
#define __ARCH_ARM_INCLUDE_CALYPSO_CLOCK_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
@ -64,4 +64,4 @@ void calypso_debugunit(int enable);
|
||||
void calypso_rhea_cfg(uint8_t fac0, uint8_t fac1, uint8_t timeout,
|
||||
uint8_t ws_h, uint8_t ws_l, uint8_t w_en0, uint8_t w_en1);
|
||||
|
||||
#endif /* _CALYPSO_CLK_H */
|
||||
#endif /* __ARCH_ARM_INCLUDE_CALYPSO_CLOCK_H */
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _DEBUG_H
|
||||
#define _DEBUG_H
|
||||
#ifndef __ARCH_ARM_INCLUDE_CALYPSO_DEBUG_H
|
||||
#define __ARCH_ARM_INCLUDE_CALYPSO_DEBUG_H
|
||||
|
||||
#ifndef ARRAY_SIZE
|
||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
||||
@ -28,4 +28,4 @@
|
||||
#define printd(x, args ...)
|
||||
#endif
|
||||
|
||||
#endif /* _DEBUG_H */
|
||||
#endif /* __ARCH_ARM_INCLUDE_CALYPSO_DEBUG_H */
|
||||
|
@ -1,6 +1,5 @@
|
||||
|
||||
#ifndef _DEFINES_H
|
||||
#define _DEFINES_H
|
||||
#ifndef __ARCH_ARM_INCLUDE_CALYPSO_DEFINES_H
|
||||
#define __ARCH_ARM_INCLUDE_CALYPSO_DEFINES_H
|
||||
|
||||
#define __attribute_const__ __attribute__((__const__))
|
||||
|
||||
@ -15,4 +14,4 @@
|
||||
/* force placement in zero-waitstate memory */
|
||||
#define __ramtext __section(".ramtext")
|
||||
|
||||
#endif /* !_DEFINES_H */
|
||||
#endif /* !__ARCH_ARM_INCLUDE_CALYPSO_DEFINES_H */
|
||||
|
@ -41,8 +41,8 @@
|
||||
#error "This file should never be included directly! Use <nuttx/irq.h>"
|
||||
#endif
|
||||
|
||||
#ifndef _CALYPSO_IRQ_H
|
||||
#define _CALYPSO_IRQ_H
|
||||
#ifndef __ARCH_ARM_INCLUDE_CALYPSO_IRQ_H
|
||||
#define __ARCH_ARM_INCLUDE_CALYPSO_IRQ_H
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
|
||||
@ -78,4 +78,4 @@ enum irq_nr {
|
||||
|
||||
#define IRQ_SYSTIMER IRQ_TIMER2
|
||||
|
||||
#endif /* _CALYPSO_IRQ_H */
|
||||
#endif /* __ARCH_ARM_INCLUDE_CALYPSO_IRQ_H */
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _MEMORY_H
|
||||
#define _MEMORY_H
|
||||
#ifndef __ARCH_ARM_INCLUDE_CALYPSO_MEMORY_H
|
||||
#define __ARCH_ARM_INCLUDE_CALYPSO_MEMORY_H
|
||||
|
||||
#define __arch_getb(a) (*(volatile unsigned char *)(a))
|
||||
#define __arch_getw(a) (*(volatile unsigned short *)(a))
|
||||
@ -25,4 +25,4 @@
|
||||
#define readw(a) __arch_getw(a)
|
||||
#define readl(a) __arch_getl(a)
|
||||
|
||||
#endif /* _MEMORY_H */
|
||||
#endif /* __ARCH_ARM_INCLUDE_CALYPSO_MEMORY_H */
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _CAL_TIMER_H
|
||||
#define _CAL_TIMER_H
|
||||
#ifndef __ARCH_ARM_INCLUDE_CALYPSO_TIMER_H
|
||||
#define __ARCH_ARM_INCLUDE_CALYPSO_TIMER_H
|
||||
|
||||
/* Enable or Disable a timer */
|
||||
void hwtimer_enable(int num, int on);
|
||||
@ -22,4 +22,4 @@ void wdog_reset(void);
|
||||
/* power up the timers */
|
||||
void hwtimer_init(void);
|
||||
|
||||
#endif /* _CAL_TIMER_H */
|
||||
#endif /* __ARCH_ARM_INCLUDE_CALYPSO_TIMER_H */
|
||||
|
@ -1,5 +1,5 @@
|
||||
#ifndef _CALYPSO_UWIRE_H
|
||||
#define _CALYPSO_UWIRE_H
|
||||
#ifndef __ARCH_ARM_INCLUDE_CALYPSO_UWIRE_H
|
||||
#define __ARCH_ARM_INCLUDE_CALYPSO_UWIRE_H
|
||||
void uwire_init(void);
|
||||
int uwire_xfer(int cs, int bitlen, const void *dout, void *din);
|
||||
#endif
|
||||
|
@ -37,8 +37,8 @@
|
||||
* only indirectly through nuttx/irq.h
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_LPC214X_IRQ_H
|
||||
#define __ARCH_LPC214X_IRQ_H
|
||||
#ifndef __ARCH_ARM_INCLUDE_LPC214X_IRQ_H
|
||||
#define __ARCH_ARM_INCLUDE_LPC214X_IRQ_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -127,5 +127,5 @@ void up_detach_vector(int vector);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* __ARCH_LPC214X_IRQ_H */
|
||||
#endif /* __ARCH_ARM_INCLUDE_LPC214X_IRQ_H */
|
||||
|
||||
|
@ -43,8 +43,8 @@
|
||||
* only indirectly through nuttx/irq.h
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_LPC2378_IRQ_H
|
||||
#define __ARCH_LPC2378_IRQ_H
|
||||
#ifndef __ARCH_ARM_INCLUDE_LPC2378_IRQ_H
|
||||
#define __ARCH_ARM_INCLUDE_LPC2378_IRQ_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -149,4 +149,4 @@ void up_detach_vector(int vector);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* __ARCH_LPC2378_IRQ_H */
|
||||
#endif /* __ARCH_ARM_INCLUDE_LPC2378_IRQ_H */
|
||||
|
@ -1,5 +1,5 @@
|
||||
/****************************************************************************
|
||||
* c5471/chip.h
|
||||
* arch/arm/src/c5471/chip.h
|
||||
*
|
||||
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -33,8 +33,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __C5471_CHIP_H
|
||||
#define __C5471_CHIP_H
|
||||
#ifndef __ARCH_ARM_SRC_C5471_CHIP_H
|
||||
#define __ARCH_ARM_SRC_C5471_CHIP_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -368,4 +368,4 @@
|
||||
* Public Function Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
#endif /* __C5471_CHIP_H */
|
||||
#endif /* __ARCH_ARM_SRC_C5471_CHIP_H */
|
||||
|
@ -37,8 +37,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __CALYPSO_CHIP_H
|
||||
#define __CALYPSO_CHIP_H
|
||||
#ifndef __ARCH_ARM_SRC_CALYPSO_CHIP_H
|
||||
#define __ARCH_ARM_SRC_CALYPSO_CHIP_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -208,4 +208,4 @@
|
||||
* Public Function Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
#endif /* __CALYPSO_CHIP_H */
|
||||
#endif /* __ARCH_ARM_SRC_CALYPSO_CHIP_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __DM320_CHIP_H
|
||||
#define __DM320_CHIP_H
|
||||
#ifndef __ARCH_ARM_SRC_DM320_CHIP_H
|
||||
#define __ARCH_ARM_SRC_DM320_CHIP_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -58,4 +58,4 @@
|
||||
* Inline Functions
|
||||
************************************************************************************/
|
||||
|
||||
#endif /* __DM320_CHIP_H */
|
||||
#endif /* __ARCH_ARM_SRC_DM320_CHIP_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __DM320_DM320_EMIF_H
|
||||
#define __DM320_DM320_EMIF_H
|
||||
#ifndef __ARCH_ARM_SRC_DM320_DM320_EMIF_H
|
||||
#define __ARCH_ARM_SRC_DM320_DM320_EMIF_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -105,4 +105,4 @@
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* __DM320_DM320_EMIF_H */
|
||||
#endif /* __ARCH_ARM_SRC_DM320_DM320_EMIF_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __DM320_DM320GIO_H
|
||||
#define __DM320_DM320GIO_H
|
||||
#ifndef __ARCH_ARM_SRC_DM320_DM320_GIO_H
|
||||
#define __ARCH_ARM_SRC_DM320_DM320_GIO_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __DM320_DM320_INTC_H
|
||||
#define __DM320_DM320_INTC_H
|
||||
#ifndef __ARCH_ARM_SRC_DM320_DM320_INTC_H
|
||||
#define __ARCH_ARM_SRC_DM320_DM320_INTC_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -98,4 +98,4 @@
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* __DM320_DM320_INTC_H */
|
||||
#endif /* __ARCH_ARM_SRC_DM320_DM320_INTC_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __DM320_MEMORYMAP_H
|
||||
#define __DM320_MEMORYMAP_H
|
||||
#ifndef __ARCH_ARM_SRC_DM320_DM320_MEMORYMAP_H
|
||||
#define __ARCH_ARM_SRC_DM320_DM320_MEMORYMAP_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -261,4 +261,4 @@
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* __DM320_MEMORYMAP_H */
|
||||
#endif /* __ARCH_ARM_SRC_DM320_DM320_MEMORYMAP_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __DM320_TIMER_H
|
||||
#define __DM320_TIMER_H
|
||||
#ifndef __ARCH_ARM_SRC_DM320_DM320_TIMER_H
|
||||
#define __ARCH_ARM_SRC_DM320_DM320_TIMER_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -105,4 +105,4 @@
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* __DM320_TIMER_H */
|
||||
#endif /* __ARCH_ARM_SRC_DM320_DM320_TIMER_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __DM320_UART_H
|
||||
#define __DM320_UART_H
|
||||
#ifndef __ARCH_ARM_SRC_DM320_DM320_UART_H
|
||||
#define __ARCH_ARM_SRC_DM320_DM320_UART_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -173,4 +173,4 @@
|
||||
* Inline Functions
|
||||
************************************************************************************/
|
||||
|
||||
#endif /* __DM320_UART_H */
|
||||
#endif /* __ARCH_ARM_SRC_DM320_DM320_UART_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
****************************************************************************************************/
|
||||
|
||||
#ifndef __LPC214X_CHIP_H
|
||||
#define __LPC214X_CHIP_H
|
||||
#ifndef __ARCH_ARM_SRC_LPC214X_CHIP_H
|
||||
#define __ARCH_ARM_SRC_LPC214X_CHIP_H
|
||||
|
||||
/****************************************************************************************************
|
||||
* Included Files
|
||||
@ -346,4 +346,4 @@
|
||||
* Public Function Prototypes
|
||||
****************************************************************************************************/
|
||||
|
||||
#endif /* __LPC214X_CHIP_H */
|
||||
#endif /* __ARCH_ARM_SRC_LPC214X_CHIP_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef _ARCH_ARM_SRC_LPC214X_APB_H
|
||||
#define _ARCH_ARM_SRC_LPC214X_APB_H
|
||||
#ifndef __ARCH_ARM_SRC_LPC214X_LPC214X_APB_H
|
||||
#define __ARCH_ARM_SRC_LPC214X_LPC214X_APB_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -69,4 +69,4 @@
|
||||
* Public Function Prototypes
|
||||
************************************************************************************/
|
||||
|
||||
#endif /* _ARCH_ARM_SRC_LPC214X_APB_H */
|
||||
#endif /* __ARCH_ARM_SRC_LPC214X_LPC214X_APB_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef _ARCH_ARM_SRC_LPC214X_I2C_H
|
||||
#define _ARCH_ARM_SRC_LPC214X_I2C_H
|
||||
#ifndef __ARCH_ARM_SRC_LPC214X_LPC214X_I2C_H
|
||||
#define __ARCH_ARM_SRC_LPC214X_LPC214X_I2C_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -138,4 +138,4 @@
|
||||
* Public Function Prototypes
|
||||
************************************************************************************/
|
||||
|
||||
#endif /* _ARCH_ARM_SRC_LPC214X_I2C_H */
|
||||
#endif /* __ARCH_ARM_SRC_LPC214X_LPC214X_I2C_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef _ARCH_ARM_SRC_LPC214X_PINSEL_H
|
||||
#define _ARCH_ARM_SRC_LPC214X_PINSEL_H
|
||||
#ifndef __ARCH_ARM_SRC_LPC214X_LPC214X_PINSEL_H
|
||||
#define __ARCH_ARM_SRC_LPC214X_LPC214X_PINSEL_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -256,4 +256,4 @@
|
||||
* Public Function Prototypes
|
||||
************************************************************************************/
|
||||
|
||||
#endif /* _ARCH_ARM_SRC_LPC214X_PINSEL_H */
|
||||
#endif /* __ARCH_ARM_SRC_LPC214X_LPC214X_PINSEL_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
****************************************************************************************************/
|
||||
|
||||
#ifndef _ARCH_ARM_SRC_LPC214X_PLL_H
|
||||
#define _ARCH_ARM_SRC_LPC214X_PLL_H
|
||||
#ifndef __ARCH_ARM_SRC_LPC214X_LPC214X_PLL_H
|
||||
#define __ARCH_ARM_SRC_LPC214X_LPC214X_PLL_H
|
||||
|
||||
/****************************************************************************************************
|
||||
* Included Files
|
||||
@ -102,4 +102,4 @@
|
||||
* Public Function Prototypes
|
||||
****************************************************************************************************/
|
||||
|
||||
#endif /* _ARCH_ARM_SRC_LPC214X_PLL_H */
|
||||
#endif /* __ARCH_ARM_SRC_LPC214X_LPC214X_PLL_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef _ARCH_ARM_SRC_LPC214X_POWER_H
|
||||
#define _ARCH_ARM_SRC_LPC214X_POWER_H
|
||||
#ifndef __ARCH_ARM_SRC_LPC214X_LPC214X_POWER_H
|
||||
#define __ARCH_ARM_SRC_LPC214X_LPC214X_POWER_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -87,4 +87,4 @@
|
||||
* Public Function Prototypes
|
||||
************************************************************************************/
|
||||
|
||||
#endif /* _ARCH_ARM_SRC_LPC214X_POWER_H */
|
||||
#endif /* __ARCH_ARM_SRC_LPC214X_LPC214X_POWER_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef _ARCH_ARM_SRC_LPC214X_SPI_H
|
||||
#define _ARCH_ARM_SRC_LPC214X_SPI_H
|
||||
#ifndef __ARCH_ARM_SRC_LPC214X_LPC214X_SPI_H
|
||||
#define __ARCH_ARM_SRC_LPC214X_LPC214X_SPI_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -181,4 +181,4 @@ struct spi_dev_s; /* Forward reference */
|
||||
|
||||
FAR struct spi_dev_s *lpc214x_spibus_initialize(int port);
|
||||
|
||||
#endif /* _ARCH_ARM_SRC_LPC214X_SPI_H */
|
||||
#endif /* __ARCH_ARM_SRC_LPC214X_LPC214X_SPI_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __LPC214X_TIMER_H
|
||||
#define __LPC214X_TIMER_H
|
||||
#ifndef __ARCH_ARM_SRC_LPC214X_LPC214X_TIMER_H
|
||||
#define __ARCH_ARM_SRC_LPC214X_LPC214X_TIMER_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -149,4 +149,4 @@
|
||||
* Public Function Prototypes
|
||||
************************************************************************************/
|
||||
|
||||
#endif /* __LPC214X_TIMER_H */
|
||||
#endif /* __ARCH_ARM_SRC_LPC214X_LPC214X_TIMER_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __LPC214X_UART_H
|
||||
#define __LPC214X_UART_H
|
||||
#ifndef __ARCH_ARM_SRC_LPC214X_LPC214X_UART_H
|
||||
#define __ARCH_ARM_SRC_LPC214X_LPC214X_UART_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -139,4 +139,4 @@
|
||||
* Public Function Prototypes
|
||||
************************************************************************************/
|
||||
|
||||
#endif /* __LPC214X_UART_H */
|
||||
#endif /* __ARCH_ARM_SRC_LPC214X_LPC214X_UART_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __LPC214X_VIC_H
|
||||
#define __LPC214X_VIC_H
|
||||
#ifndef __ARCH_ARM_SRC_LPC214X_LPC214X_VIC_H
|
||||
#define __ARCH_ARM_SRC_LPC214X_LPC214X_VIC_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -67,4 +67,4 @@
|
||||
* Public Function Prototypes
|
||||
************************************************************************************/
|
||||
|
||||
#endif /* __LPC214X_VIC_H */
|
||||
#endif /* __ARCH_ARM_SRC_LPC214X_LPC214X_VIC_H */
|
||||
|
@ -38,8 +38,8 @@
|
||||
*
|
||||
****************************************************************************************************/
|
||||
|
||||
#ifndef _ARCH_ARM_SRC_LPC2378_CHIP_H
|
||||
#define _ARCH_ARM_SRC_LPC2378_CHIP_H
|
||||
#ifndef __ARCH_ARM_SRC_LPC2378_CHIP_H
|
||||
#define __ARCH_ARM_SRC_LPC2378_CHIP_H
|
||||
|
||||
/****************************************************************************************************
|
||||
* Included Files
|
||||
@ -1003,4 +1003,4 @@ are for LPC24xx only. */
|
||||
* Public Function Prototypes
|
||||
****************************************************************************************************/
|
||||
|
||||
#endif /* _ARCH_ARM_SRC_LPC2378_CHIP_H */
|
||||
#endif /* __ARCH_ARM_SRC_LPC2378_CHIP_H */
|
||||
|
@ -38,8 +38,8 @@
|
||||
*
|
||||
****************************************************************************************************/
|
||||
|
||||
#ifndef _ARCH_ARM_SRC_LPC2378_INTERNAL_H
|
||||
#define _ARCH_ARM_SRC_LPC2378_INTERNAL_H
|
||||
#ifndef __ARCH_ARM_SRC_LPC2378_LPC23XX_H
|
||||
#define __ARCH_ARM_SRC_LPC2378_LPC23XX_H
|
||||
|
||||
/****************************************************************************************************
|
||||
* Included Files
|
||||
@ -67,4 +67,4 @@ void lpc2378_statledon(void);
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* _ARCH_ARM_SRC_LPC2378_INTERNAL_H */
|
||||
#endif /* __ARCH_ARM_SRC_LPC2378_LPC23XX_H */
|
||||
|
@ -38,8 +38,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef _ARCH_ARM_SRC_LPC2378_LPC23XX_GPIO_H
|
||||
#define _ARCH_ARM_SRC_LPC2378_LPC23XX_GPIO_H
|
||||
#ifndef __ARCH_ARM_SRC_LPC2378_LPC23XX_GPIO_H
|
||||
#define __ARCH_ARM_SRC_LPC2378_LPC23XX_GPIO_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -68,4 +68,4 @@
|
||||
* Public Function Prototypes
|
||||
************************************************************************************/
|
||||
|
||||
#endif /* _ARCH_ARM_SRC_LPC2378_LPC23XX_GPIO_H */
|
||||
#endif /* __ARCH_ARM_SRC_LPC2378_LPC23XX_GPIO_H */
|
||||
|
@ -38,8 +38,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef _ARCH_ARM_SRC_LPC23XX_PINSEL_H
|
||||
#define _ARCH_ARM_SRC_LPC23XX_PINSEL_H
|
||||
#ifndef __ARCH_ARM_SRC_LPC2378_LPC23XX_PINSEL_H
|
||||
#define __ARCH_ARM_SRC_LPC2378_LPC23XX_PINSEL_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -789,4 +789,4 @@
|
||||
* Public Function Prototypes
|
||||
************************************************************************************/
|
||||
|
||||
#endif /* _ARCH_ARM_SRC_LPC23XX_PINSEL_H */
|
||||
#endif /* __ARCH_ARM_SRC_LPC2378_LPC23XX_PINSEL_H */
|
||||
|
@ -37,8 +37,8 @@
|
||||
* only indirectly through nuttx/arch.h
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_ARCH_H
|
||||
#define __ARCH_ARCH_H
|
||||
#ifndef __ARCH_SIM_INCLUDE_ARCH_H
|
||||
#define __ARCH_SIM_INCLUDE_ARCH_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -77,5 +77,5 @@ extern "C"
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __ARCH_ARCH_H */
|
||||
#endif /* __ARCH_SIM_INCLUDE_ARCH_H */
|
||||
|
||||
|
@ -37,8 +37,8 @@
|
||||
* only indirectly through nuttx/irq.h
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_IRQ_H
|
||||
#define __ARCH_IRQ_H
|
||||
#ifndef __ARCH_SIM_INCLUDE_IRQ_H
|
||||
#define __ARCH_SIM_INCLUDE_IRQ_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -132,5 +132,5 @@ extern "C"
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __ARCH_IRQ_H */
|
||||
#endif /* __ARCH_SIM_INCLUDE_IRQ_H */
|
||||
|
||||
|
@ -37,8 +37,8 @@
|
||||
* only indirectly through nuttx/arch.h
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_ARCH_H
|
||||
#define __ARCH_ARCH_H
|
||||
#ifndef __ARCH_Z16_INCLUDE_ARCH_H
|
||||
#define __ARCH_Z16_INCLUDE_ARCH_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -77,5 +77,5 @@ extern "C"
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __ARCH_ARCH_H */
|
||||
#endif /* __ARCH_Z16_INCLUDE_ARCH_H */
|
||||
|
||||
|
@ -37,8 +37,8 @@
|
||||
* only indirectly through nuttx/irq.h
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_IRQ_H
|
||||
#define __ARCH_IRQ_H
|
||||
#ifndef __ARCH_Z16_INCLUDE_IRQ_H
|
||||
#define __ARCH_Z16_INCLUDE_IRQ_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -78,5 +78,5 @@ extern "C"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* __ARCH_IRQ_H */
|
||||
#endif /* __ARCH_Z16_INCLUDE_IRQ_H */
|
||||
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __ARCH_SERIAL_H
|
||||
#define __ARCH_SERIAL_H
|
||||
#ifndef __ARCH_Z16_INCLUDE_SERIAL_H
|
||||
#define __ARCH_Z16_INCLUDE_SERIAL_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -52,4 +52,4 @@
|
||||
* Public Functions
|
||||
****************************************************************************/
|
||||
|
||||
#endif /* __ARCH_SERIAL_H */
|
||||
#endif /* __ARCH_Z16_INCLUDE_SERIAL_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#ifndef __UP_INTERNAL_H
|
||||
#define __UP_INTERNAL_H
|
||||
#ifndef __ARCH_Z16_SRC_COMMON_UP_INTERNAL_H
|
||||
#define __ARCH_Z16_SRC_COMMON_UP_INTERNAL_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -203,4 +203,4 @@ void up_registerdump(void);
|
||||
|
||||
#endif /* __ASSEMBLY__ */
|
||||
|
||||
#endif /* __UP_INTERNAL_H */
|
||||
#endif /* __ARCH_Z16_SRC_COMMON_UP_INTERNAL_H */
|
||||
|
@ -37,8 +37,8 @@
|
||||
* only indirectly through nuttx/arch.h (via arch/arch.h)
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_EZ80_ARCH_H
|
||||
#define __ARCH_EZ80_ARCH_H
|
||||
#ifndef __ARCH_Z80_INCLUDE_EZ80_ARCH_H
|
||||
#define __ARCH_Z80_INCLUDE_EZ80_ARCH_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -73,5 +73,5 @@ extern "C"
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __ARCH_EZ80_ARCH_H */
|
||||
#endif /* __ARCH_Z80_INCLUDE_EZ80_ARCH_H */
|
||||
|
||||
|
@ -37,8 +37,8 @@
|
||||
* through arch/io.h
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_EZ80_IO_H
|
||||
#define __ARCH_EZ80_IO_H
|
||||
#ifndef __ARCH_Z80_INCLUDE_EZ80_IO_H
|
||||
#define __ARCH_Z80_INCLUDE_EZ80_IO_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -84,4 +84,4 @@ uint8_t inp(uint16_t p);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* __ARCH_EZ80_IO_H */
|
||||
#endif /* __ARCH_Z80_INCLUDE_EZ80_IO_H */
|
||||
|
@ -37,8 +37,8 @@
|
||||
* through sys/types.h
|
||||
*/
|
||||
|
||||
#ifndef __ARC_Z80_INCLUDE_Z180_TYPES_H
|
||||
#define __ARC_Z80_INCLUDE_Z180_TYPES_H
|
||||
#ifndef __ARCH_Z80_INCLUDE_Z180_TYPES_H
|
||||
#define __ARCH_Z80_INCLUDE_Z180_TYPES_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -95,4 +95,4 @@ typedef _uint16_t irqstate_t;
|
||||
* Public Function Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
#endif /* __ARC_Z80_INCLUDE_Z180_TYPES_H */
|
||||
#endif /* __ARCH_Z80_INCLUDE_Z180_TYPES_H */
|
||||
|
@ -37,8 +37,8 @@
|
||||
* only indirectly through nuttx/arch.h (via arch/arch.h)
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_Z8_ARCH_H
|
||||
#define __ARCH_Z8_ARCH_H
|
||||
#ifndef __ARCH_Z80_INCLUDE_Z8_ARCH_H
|
||||
#define __ARCH_Z80_INCLUDE_Z8_ARCH_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -73,5 +73,5 @@ extern "C"
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* __ARCH_Z8_ARCH_H */
|
||||
#endif /* __ARCH_Z80_INCLUDE_Z8_ARCH_H */
|
||||
|
||||
|
@ -37,8 +37,8 @@
|
||||
* only indirectly through nuttx/irq.h (via arch/irq.h)
|
||||
*/
|
||||
|
||||
#ifndef __ARCH_Z8_IRQ_H
|
||||
#define __ARCH_Z8_IRQ_H
|
||||
#ifndef __ARCH_Z80_INCLUDE_Z8_IRQ_H
|
||||
#define __ARCH_Z80_INCLUDE_Z8_IRQ_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -373,5 +373,5 @@ void up_irq_restore(irqstate_t flags);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* __ARCH_Z8_IRQ_H */
|
||||
#endif /* __ARCH_Z80_INCLUDE_Z8_IRQ_H */
|
||||
|
||||
|
@ -37,8 +37,8 @@
|
||||
* through sys/types.h
|
||||
*/
|
||||
|
||||
#ifndef __ARC_Z80_INCLUDE_Z80_TYPES_H
|
||||
#define __ARC_Z80_INCLUDE_Z80_TYPES_H
|
||||
#ifndef __ARCH_Z80_INCLUDE_Z80_TYPES_H
|
||||
#define __ARCH_Z80_INCLUDE_Z80_TYPES_H
|
||||
|
||||
/****************************************************************************
|
||||
* Included Files
|
||||
@ -95,4 +95,4 @@ typedef _uint16_t irqstate_t;
|
||||
* Public Function Prototypes
|
||||
****************************************************************************/
|
||||
|
||||
#endif /* __ARC_Z80_INCLUDE_Z80_TYPES_H */
|
||||
#endif /* __ARCH_Z80_INCLUDE_Z80_TYPES_H */
|
||||
|
@ -1,6 +1,5 @@
|
||||
/************************************************************************************
|
||||
* arch/z80/src/ez80/switch.h
|
||||
* arch/z80/src/chip/switch.h
|
||||
*
|
||||
* Copyright (C) 2008-2009, 2011-2012 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <gnutt@nuttx.org>
|
||||
@ -34,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __EZ80_SWITCH_H
|
||||
#define __EZ80_SWITCH_H
|
||||
#ifndef __ARCH_Z80_SRC_EZ80_SWITCH_H
|
||||
#define __ARCH_Z80_SRC_EZ80_SWITCH_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -168,4 +167,4 @@ void ez80_registerdump(void);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* __EZ80_SWITCH_H */
|
||||
#endif /* __ARCH_Z80_SRC_EZ80_SWITCH_H */
|
||||
|
@ -34,8 +34,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __EZ80_UP_MEM_H
|
||||
#define __EZ80_UP_MEM_H
|
||||
#ifndef __ARCH_Z80_SRC_EZ80_UP_MEM_H
|
||||
#define __ARCH_Z80_SRC_EZ80_UP_MEM_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -86,4 +86,4 @@ extern "C"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* __EZ80_UP_MEM_H */
|
||||
#endif /* __ARCH_Z80_SRC_EZ80_UP_MEM_H */
|
||||
|
@ -33,8 +33,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __ARCH_Z180_SRC_COMMON_UP_MEM_H
|
||||
#define __ARCH_Z180_SRC_COMMON_UP_MEM_H
|
||||
#ifndef __ARCH_Z80_SRC_Z180_UP_MEM_H
|
||||
#define __ARCH_Z80_SRC_Z180_UP_MEM_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -72,4 +72,4 @@
|
||||
|
||||
extern const uint16_t g_heapbase;
|
||||
|
||||
#endif /* __ARCH_Z180_SRC_COMMON_UP_MEM_H */
|
||||
#endif /* __ARCH_Z80_SRC_Z180_UP_MEM_H */
|
||||
|
@ -34,8 +34,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __Z8_CHIP_H
|
||||
#define __Z8_CHIP_H
|
||||
#ifndef __ARCH_Z80_SRC_Z8_CHIP_H
|
||||
#define __ARCH_Z80_SRC_Z8_CHIP_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -236,4 +236,4 @@ extern "C"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* __Z8_CHIP_H */
|
||||
#endif /* __ARCH_Z80_SRC_Z8_CHIP_H */
|
||||
|
@ -34,8 +34,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __Z80_SWITCH_H
|
||||
#define __Z80_SWITCH_H
|
||||
#ifndef __ARCH_Z80_SRC_Z8_SWITCH_H
|
||||
#define __ARCH_Z80_SRC_Z8_SWITCH_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -255,4 +255,4 @@ void z8_registerdump(void);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* __Z80_SWITCH_H */
|
||||
#endif /* __ARCH_Z80_SRC_Z8_SWITCH_H */
|
||||
|
@ -34,8 +34,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __Z8_UP_MEM_H
|
||||
#define __Z8_UP_MEM_H
|
||||
#ifndef __ARCH_Z80_SRC_Z8_UP_MEM_H
|
||||
#define __ARCH_Z80_SRC_Z8_UP_MEM_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -86,4 +86,4 @@ extern "C"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* __Z8_UP_MEM_H */
|
||||
#endif /* __ARCH_Z80_SRC_Z8_UP_MEM_H */
|
||||
|
@ -34,8 +34,8 @@
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
#ifndef __Z80_SWITCH_H
|
||||
#define __Z80_SWITCH_H
|
||||
#ifndef __ARCH_Z80_SRC_Z80_SWITCH_H
|
||||
#define __ARCH_Z80_SRC_Z80_SWITCH_H
|
||||
|
||||
/************************************************************************************
|
||||
* Included Files
|
||||
@ -167,4 +167,4 @@ void z80_registerdump(void);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif /* __Z80_SWITCH_H */
|
||||
#endif /* __ARCH_Z80_SRC_Z80_SWITCH_H */
|
||||
|
Loading…
Reference in New Issue
Block a user