summaryrefslogtreecommitdiffstats
path: root/bsps
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2018-03-15 10:01:37 -0500
committerJoel Sherrill <joel@rtems.org>2018-03-16 08:38:21 -0500
commitb33602354d4176557e7c9e2b2ec8cbcb5c94b426 (patch)
treebc8ce519db6c1d302fb1b7d64d994cd3e1f3c434 /bsps
parentbsp/arm-a8core-start.h: Add void return type to fix warning (diff)
downloadrtems-b33602354d4176557e7c9e2b2ec8cbcb5c94b426.tar.bz2
mvme5500/include/bsp/VMEConfig.h: Remove spaces after \ and remove tabs
Diffstat (limited to 'bsps')
-rw-r--r--bsps/powerpc/mvme5500/include/bsp/VMEConfig.h30
1 files changed, 15 insertions, 15 deletions
diff --git a/bsps/powerpc/mvme5500/include/bsp/VMEConfig.h b/bsps/powerpc/mvme5500/include/bsp/VMEConfig.h
index ecc5789899..a5b43dff5c 100644
--- a/bsps/powerpc/mvme5500/include/bsp/VMEConfig.h
+++ b/bsps/powerpc/mvme5500/include/bsp/VMEConfig.h
@@ -32,36 +32,36 @@ int BSP_VMEIrqMgrInstall(void);
* hardcoded window lengths that match this
* layout:
*/
-#define _VME_A32_WIN0_ON_PCI 0x90000000
+#define _VME_A32_WIN0_ON_PCI 0x90000000
/* If _VME_CSR_ON_PCI is defined then the A32 window is reduced to accommodate
* CSR for space.
*/
-#define _VME_CSR_ON_PCI 0x9e000000
-#define _VME_A24_ON_PCI 0x9f000000
-#define _VME_A16_ON_PCI 0x9fff0000
+#define _VME_CSR_ON_PCI 0x9e000000
+#define _VME_A24_ON_PCI 0x9f000000
+#define _VME_A16_ON_PCI 0x9fff0000
/* Reuse BAT 0 for VME */
-#define BSP_VME_BAT_IDX 0
+#define BSP_VME_BAT_IDX 0
/* start of the A32 window on the VME bus
* TODO: this should perhaps be a configuration option
*/
-#define _VME_A32_WIN0_ON_VME 0x20000000
+#define _VME_A32_WIN0_ON_VME 0x20000000
/* if _VME_DRAM_OFFSET is defined, the BSP
* will map our RAM onto the VME bus, starting
* at _VME_DRAM_OFFSET
*/
-#define _VME_DRAM_OFFSET 0x90000000
+#define _VME_DRAM_OFFSET 0x90000000
-#define BSP_VME_UNIVERSE_INSTALL_IRQ_MGR(err) \
- do { \
- err = vmeUniverseInstallIrqMgrAlt(VMEUNIVERSE_IRQ_MGR_FLAG_SHARED,\
- 0, BSP_GPP_VME_VLINT0, \
- 1, BSP_GPP_VME_VLINT1, \
- 2, BSP_GPP_VME_VLINT2, \
+#define BSP_VME_UNIVERSE_INSTALL_IRQ_MGR(err) \
+ do { \
+ err = vmeUniverseInstallIrqMgrAlt(VMEUNIVERSE_IRQ_MGR_FLAG_SHARED, \
+ 0, BSP_GPP_VME_VLINT0, \
+ 1, BSP_GPP_VME_VLINT1, \
+ 2, BSP_GPP_VME_VLINT2, \
3, BSP_GPP_VME_VLINT3, \
- -1 /* terminate list */); \
- } while (0)
+ -1 /* terminate list */); \
+ } while (0)
#endif