mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-01 00:49:43 +00:00
arm: socfpga: Use only one clrbits_le32 call to deassert SPI reset bits
As suggested by Pavel, lets combine the two calls into one. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Chin Liang See <clsee@altera.com> Cc: Dinh Nguyen <dinguyen@altera.com> Cc: Vince Bridgers <vbridger@altera.com> Cc: Marek Vasut <marex@denx.de> Acked-by: Pavel Machek <pavel@denx.de>
This commit is contained in:
parent
f37a126692
commit
c877eaa8a0
1 changed files with 2 additions and 2 deletions
|
@ -110,6 +110,6 @@ void socfpga_spim_enable(void)
|
||||||
{
|
{
|
||||||
const void *reset = &reset_manager_base->per_mod_reset;
|
const void *reset = &reset_manager_base->per_mod_reset;
|
||||||
|
|
||||||
clrbits_le32(reset, 1 << RSTMGR_PERMODRST_SPIM0_LSB);
|
clrbits_le32(reset, (1 << RSTMGR_PERMODRST_SPIM0_LSB) |
|
||||||
clrbits_le32(reset, 1 << RSTMGR_PERMODRST_SPIM1_LSB);
|
(1 << RSTMGR_PERMODRST_SPIM1_LSB));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue