From 24e51cb0b138d4827a7069222c3bde977d10c33c Mon Sep 17 00:00:00 2001 From: Kedareswara rao Appana Date: Tue, 2 Sep 2014 17:17:06 +0530 Subject: [PATCH] trafgen: Fix incorrect ID Mask value Use proper value for XTG_ID_MASK. Signed-off-by: Kedareswara rao Appana --- XilinxProcessorIPLib/drivers/trafgen/src/xtrafgen_hw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XilinxProcessorIPLib/drivers/trafgen/src/xtrafgen_hw.h b/XilinxProcessorIPLib/drivers/trafgen/src/xtrafgen_hw.h index 7f901e9e..0adefdc6 100755 --- a/XilinxProcessorIPLib/drivers/trafgen/src/xtrafgen_hw.h +++ b/XilinxProcessorIPLib/drivers/trafgen/src/xtrafgen_hw.h @@ -279,7 +279,7 @@ extern "C" { #define XTG_LOCK_MASK 0x1 /**< Driven to a*_lock line */ #define XTG_BURST_MASK 0x3 /**< Driven to a*_burst line */ #define XTG_SIZE_MASK 0x7 /**< Driven to a*_size line */ -#define XTG_ID_MASK 0x2F /**< Driven to a*_id line */ +#define XTG_ID_MASK 0x3F /**< Driven to a*_id line */ #define XTG_PROT_MASK 0x7 /**< Driven to a*_prot line */ #define XTG_LAST_ADDR_MASK 0x7 /**< Last address */ #define XTG_VALID_CMD_MASK 0x1 /**< Valid Command */