summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-03-17 08:55:47 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-03-26 13:53:24 +0100
commit024e064449ed7d80a96fd40c91a9ab1f555ef079 (patch)
treeb5e52c9ddc1c4f042485b53a604fee824b9fc946
parentrtems-bsd-mutex: Support priority changes (diff)
downloadrtems-libbsd-024e064449ed7d80a96fd40c91a9ab1f555ef079.tar.bz2
nexus-devices: Fix for QorIQ T variants
-rw-r--r--rtemsbsd/include/bsp/nexus-devices.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/rtemsbsd/include/bsp/nexus-devices.h b/rtemsbsd/include/bsp/nexus-devices.h
index 9cd1da7e..4d6e767e 100644
--- a/rtemsbsd/include/bsp/nexus-devices.h
+++ b/rtemsbsd/include/bsp/nexus-devices.h
@@ -50,7 +50,7 @@ static const rtems_bsd_device_resource smc0_res[] = {
};
RTEMS_BSD_DEFINE_NEXUS_DEVICE(smc, 0, RTEMS_ARRAY_SIZE(smc0_res),
- &smc0_res[0]);
+ &smc0_res[0]);
#elif defined(__GENMCF548X_BSP_H)
@@ -69,7 +69,7 @@ static const rtems_bsd_device_resource zy7_slcr0_res[] = {
};
RTEMS_BSD_DEFINE_NEXUS_DEVICE(zy7_slcr, 0, RTEMS_ARRAY_SIZE(zy7_slcr0_res),
- &zy7_slcr0_res[0]);
+ &zy7_slcr0_res[0]);
static const rtems_bsd_device_resource cgem0_res[] = {
{
@@ -84,12 +84,14 @@ static const rtems_bsd_device_resource cgem0_res[] = {
};
RTEMS_BSD_DEFINE_NEXUS_DEVICE(cgem, 0, RTEMS_ARRAY_SIZE(cgem0_res),
- &cgem0_res[0]);
+ &cgem0_res[0]);
SYSINIT_DRIVER_REFERENCE(e1000phy, miibus);
#elif defined(LIBBSP_POWERPC_QORIQ_BSP_H)
+#if !QORIQ_CHIP_IS_T_VARIANT(QORIQ_CHIP_VARIANT)
+
#include <bsp/irq.h>
static const rtems_bsd_device_resource tsec0_res[] = {
@@ -113,6 +115,8 @@ static const rtems_bsd_device_resource tsec0_res[] = {
};
RTEMS_BSD_DEFINE_NEXUS_DEVICE(tsec, 0, RTEMS_ARRAY_SIZE(tsec0_res),
- &tsec0_res[0]);
+ &tsec0_res[0]);
+
+#endif /* !QORIQ_CHIP_IS_T_VARIANT(QORIQ_CHIP_VARIANT) */
#endif