2007-12-08 Till Straumann <strauman@slac.stanford.edu>

* vme/VMEConfig.h: added error status to
	BSP_VME_UNIVERSE_INSTALL_IRQ_MGR(err) macro.
This commit is contained in:
Till Straumann
2007-12-09 05:54:19 +00:00
parent b83b70ae60
commit ae93b29af7
6 changed files with 21 additions and 6 deletions

View File

@@ -1,3 +1,8 @@
2007-12-08 Till Straumann <strauman@slac.stanford.edu>
* vme/VMEConfig.h: added error status to
BSP_VME_UNIVERSE_INSTALL_IRQ_MGR(err) macro.
2007-12-08 Till Straumann <strauman@slac.stanford.edu>
* Makefile.am: irq_supp.h was moved from shared/irq to

View File

@@ -96,9 +96,9 @@ extern int _BSP_vme_bridge_irq;
extern int BSP_VMEInit();
extern int BSP_VMEIrqMgrInstall();
#define BSP_VME_UNIVERSE_INSTALL_IRQ_MGR \
#define BSP_VME_UNIVERSE_INSTALL_IRQ_MGR(err) \
do { \
vmeUniverseInstallIrqMgr(0,5,1,6); \
err = vmeUniverseInstallIrqMgr(0,5,1,6); \
} while (0)
#endif

View File

@@ -1,3 +1,8 @@
2007-12-08 Till Straumann <strauman@slac.stanford.edu>
* vme/VMEConfig.h: added error status to
BSP_VME_UNIVERSE_INSTALL_IRQ_MGR(err) macro.
2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>
* include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field

View File

@@ -28,9 +28,9 @@
*/
#define _VME_DRAM_OFFSET 0x90000000
#define BSP_VME_UNIVERSE_INSTALL_IRQ_MGR \
#define BSP_VME_UNIVERSE_INSTALL_IRQ_MGR(err) \
do { \
vmeUniverseInstallIrqMgr(0,64+12,1,64+13); \
err = vmeUniverseInstallIrqMgr(0,64+12,1,64+13); \
} while (0)
#endif

View File

@@ -1,3 +1,8 @@
2007-12-08 Till Straumann <strauman@slac.stanford.edu>
* vme/VMEConfig.h: added error status to
BSP_VME_UNIVERSE_INSTALL_IRQ_MGR(err) macro.
2007-12-04 Joel Sherrill <joel.sherrill@OARcorp.com>
* include/bsp.h, startup/bspstart.c: Move interrupt_stack_size field

View File

@@ -90,9 +90,9 @@
extern int BSP_VMEInit();
extern int BSP_VMEIrqMgrInstall();
#define BSP_VME_UNIVERSE_INSTALL_IRQ_MGR \
#define BSP_VME_UNIVERSE_INSTALL_IRQ_MGR(err) \
do { \
vmeUniverseInstallIrqMgr(0,5,1,6); \
err = vmeUniverseInstallIrqMgr(0,5,1,6); \
} while (0)
#endif