SAM3: Remove unused reference to SUPC registers
The SUPC (Supply Controller) registers are on different base addresses on different SAM3 chips: SAM3U: 0x400e1210 SAM3N: 0x400e1410 SAM3S: 0x400e1410 This creates a problem with the sam3_reg_list array which is const, but would need to be changed at runtime to account for this variability. As this register is not used anywhere, it's simplest to just remove it. Change-Id: I987eb371648d826aa6d5e9de18d38c7bb66d6fca Signed-off-by: Attila Kinali <attila@kinali.ch> Reviewed-on: http://openocd.zylin.com/495 Tested-by: jenkins Reviewed-by: Spencer Oliver <spen@spen-soft.co.uk>__archive__
parent
9e137265de
commit
4b4ce4f27e
|
@ -131,9 +131,6 @@ struct sam3_cfg {
|
||||||
#define SAM3_CHIPID_EXID (0x400E0744)
|
#define SAM3_CHIPID_EXID (0x400E0744)
|
||||||
uint32_t CHIPID_EXID;
|
uint32_t CHIPID_EXID;
|
||||||
|
|
||||||
#define SAM3_SUPC_CR (0x400E1210)
|
|
||||||
uint32_t SUPC_CR;
|
|
||||||
|
|
||||||
#define SAM3_PMC_BASE (0x400E0400)
|
#define SAM3_PMC_BASE (0x400E0400)
|
||||||
#define SAM3_PMC_SCSR (SAM3_PMC_BASE + 0x0008)
|
#define SAM3_PMC_SCSR (SAM3_PMC_BASE + 0x0008)
|
||||||
uint32_t PMC_SCSR;
|
uint32_t PMC_SCSR;
|
||||||
|
@ -2129,7 +2126,6 @@ static const struct sam3_reg_list sam3_all_regs[] = {
|
||||||
SAM3_ENTRY(PMC_SR, NULL),
|
SAM3_ENTRY(PMC_SR, NULL),
|
||||||
SAM3_ENTRY(CHIPID_CIDR, sam3_explain_chipid_cidr),
|
SAM3_ENTRY(CHIPID_CIDR, sam3_explain_chipid_cidr),
|
||||||
SAM3_ENTRY(CHIPID_EXID, NULL),
|
SAM3_ENTRY(CHIPID_EXID, NULL),
|
||||||
SAM3_ENTRY(SUPC_CR, NULL),
|
|
||||||
|
|
||||||
/* TERMINATE THE LIST */
|
/* TERMINATE THE LIST */
|
||||||
{ .name = NULL }
|
{ .name = NULL }
|
||||||
|
|
Loading…
Reference in New Issue