mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 07:34:31 +00:00
clk: renesas: Fix Realtime Module Stop Control Register offsets
This patch fixes Realtime Module Stop Control Register (RMSTPCR) offsets based on R-Car Gen3, H2/M2/M2N/E2/E2X hardware user's manual. The r8a73a4 only has RMSTPCR0 - RMSTPCR5 so this calculation change doesn't affect it. Signed-off-by: Hai Pham <hai.pham.ud@renesas.com> Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
This commit is contained in:
parent
efece632e7
commit
1b004e2874
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ static const u16 smstpcr[] = {
|
||||||
|
|
||||||
|
|
||||||
/* Realtime Module Stop Control Register offsets */
|
/* Realtime Module Stop Control Register offsets */
|
||||||
#define RMSTPCR(i) (smstpcr[i] - 0x20)
|
#define RMSTPCR(i) ((i) < 8 ? smstpcr[i] - 0x20 : smstpcr[i] - 0x10)
|
||||||
|
|
||||||
/* Modem Module Stop Control Register offsets (r8a73a4) */
|
/* Modem Module Stop Control Register offsets (r8a73a4) */
|
||||||
#define MMSTPCR(i) (smstpcr[i] + 0x20)
|
#define MMSTPCR(i) (smstpcr[i] + 0x20)
|
||||||
|
|
Loading…
Reference in a new issue