arm_adi: -Wshadow warning fix
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>__archive__
parent
a09d6020e0
commit
66f42b6f74
|
@ -102,11 +102,11 @@ static uint32_t max_tar_block_size(uint32_t tar_autoincr_block, uint32_t address
|
||||||
*/
|
*/
|
||||||
void dap_ap_select(struct adiv5_dap *dap,uint8_t apsel)
|
void dap_ap_select(struct adiv5_dap *dap,uint8_t apsel)
|
||||||
{
|
{
|
||||||
uint32_t select = (apsel << 24) & 0xFF000000;
|
uint32_t select_apsel = (apsel << 24) & 0xFF000000;
|
||||||
|
|
||||||
if (select != dap->apsel)
|
if (select_apsel != dap->apsel)
|
||||||
{
|
{
|
||||||
dap->apsel = select;
|
dap->apsel = select_apsel;
|
||||||
/* Switching AP invalidates cached values.
|
/* Switching AP invalidates cached values.
|
||||||
* Values MUST BE UPDATED BEFORE AP ACCESS.
|
* Values MUST BE UPDATED BEFORE AP ACCESS.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue