rockchip: ram: sdram_rk3x88: replace comma by semicolon

A comma at the end of a line gives sometimes strange
effects in combination with some code formatters,
so replace a comma by a semicolon in the sdram_rk3188.c
and sdram_rk3288.c files.

Signed-off-by: Johan Jonker <jbx6244@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
This commit is contained in:
Johan Jonker 2022-01-12 17:32:11 +01:00 committed by Kever Yang
parent b42297ba81
commit 861682b596
2 changed files with 2 additions and 2 deletions

View File

@ -762,7 +762,7 @@ static int sdram_init(struct dram_info *dram,
* CS1, n=2 * CS1, n=2
* CS0 & CS1, n = 3 * CS0 & CS1, n = 3
*/ */
sdram_params->ch[channel].rank = 2, sdram_params->ch[channel].rank = 2;
clrsetbits_le32(&publ->pgcr, 0xF << 18, clrsetbits_le32(&publ->pgcr, 0xF << 18,
(sdram_params->ch[channel].rank | 1) << 18); (sdram_params->ch[channel].rank | 1) << 18);

View File

@ -862,7 +862,7 @@ static int sdram_init(struct dram_info *dram,
* CS1, n=2 * CS1, n=2
* CS0 & CS1, n = 3 * CS0 & CS1, n = 3
*/ */
sdram_params->ch[channel].rank = 2, sdram_params->ch[channel].rank = 2;
clrsetbits_le32(&publ->pgcr, 0xF << 18, clrsetbits_le32(&publ->pgcr, 0xF << 18,
(sdram_params->ch[channel].rank | 1) << 18); (sdram_params->ch[channel].rank | 1) << 18);