mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 07:46:43 +07:00
fbdev: sh_mobile_meram: Make current_reg field store the current reg set
Make sure current_reg == 0/1 always mean register set A/B through all the code. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
05432837ae
commit
eb4f2304ba
@ -259,8 +259,8 @@ static inline void meram_set_next_addr(struct sh_mobile_meram_priv *priv,
|
||||
{
|
||||
unsigned long target;
|
||||
|
||||
target = (cfg->current_reg) ? MExxSARA : MExxSARB;
|
||||
cfg->current_reg ^= 1;
|
||||
target = cfg->current_reg ? MExxSARB : MExxSARA;
|
||||
|
||||
/* set the next address to fetch */
|
||||
meram_write_icb(priv->base, cfg->icb[0].cache_icb, target,
|
||||
|
Loading…
Reference in New Issue
Block a user