diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2023-09-09 08:50:01 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-09-19 13:13:27 +0000 |
commit | e53baa6bfff7e3f8962c9e2310e62e28da88c54b (patch) | |
tree | 0c676c1071582993c2e75b01163b373bb0e06668 /src/soc/sifive/fu540/ux00ddr.h | |
parent | f0ed2737287a06557c43616aa8e0f69c1c852e39 (diff) |
soc/sifive/fu540: Remove space after a cast
Change-Id: I6a64015326c6ec7e14a0465fe081a2cb4606cdc8
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77734
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/sifive/fu540/ux00ddr.h')
-rw-r--r-- | src/soc/sifive/fu540/ux00ddr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/soc/sifive/fu540/ux00ddr.h b/src/soc/sifive/fu540/ux00ddr.h index d468a8ede7..aebf91a2d4 100644 --- a/src/soc/sifive/fu540/ux00ddr.h +++ b/src/soc/sifive/fu540/ux00ddr.h @@ -48,8 +48,8 @@ static inline void phy_reset(volatile uint32_t *ddrphyreg, const uint32_t *physe } static inline void ux00ddr_writeregmap(size_t ahbregaddr, const uint32_t *ctlsettings, const uint32_t *physettings) { - volatile uint32_t *ddrctlreg = (volatile uint32_t *) ahbregaddr; - volatile uint32_t *ddrphyreg = ((volatile uint32_t *) ahbregaddr) + (0x2000 / sizeof(uint32_t)); + volatile uint32_t *ddrctlreg = (volatile uint32_t *)ahbregaddr; + volatile uint32_t *ddrphyreg = ((volatile uint32_t *)ahbregaddr) + (0x2000 / sizeof(uint32_t)); unsigned int i; for (i=0;i<=264;i++) { @@ -102,7 +102,7 @@ static inline void ux00ddr_mask_leveling_completed_interrupt(size_t ahbregaddr) static inline void ux00ddr_setuprangeprotection(size_t ahbregaddr, size_t end_addr) { _REG32(209<<2, ahbregaddr) = 0x0; size_t end_addr_16Kblocks = ((end_addr >> 14) & 0x7FFFFF)-1; - _REG32(210<<2, ahbregaddr) = ((uint32_t) end_addr_16Kblocks); + _REG32(210<<2, ahbregaddr) = ((uint32_t)end_addr_16Kblocks); _REG32(212<<2, ahbregaddr) = 0x0; _REG32(214<<2, ahbregaddr) = 0x0; _REG32(216<<2, ahbregaddr) = 0x0; |