mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
ddr: altera: sdram: Minor cleanup in sdram_get_rule()
Fix the data types and zap unnecessary type change. Signed-off-by: Marek Vasut <marex@denx.de>
This commit is contained in:
parent
a003740aec
commit
6d01595f63
1 changed files with 4 additions and 4 deletions
|
@ -146,14 +146,14 @@ static void sdram_set_rule(struct sdram_prot_rule *prule)
|
|||
|
||||
static void sdram_get_rule(struct sdram_prot_rule *prule)
|
||||
{
|
||||
uint32_t addr;
|
||||
uint32_t id;
|
||||
uint32_t data;
|
||||
u32 addr;
|
||||
u32 id;
|
||||
u32 data;
|
||||
int ruleno = prule->rule;
|
||||
|
||||
/* Read the rule */
|
||||
writel(ruleno, &sdr_ctrl->prot_rule_rdwr);
|
||||
writel(ruleno | (1L << 6), &sdr_ctrl->prot_rule_rdwr);
|
||||
writel(ruleno | (1 << 6), &sdr_ctrl->prot_rule_rdwr);
|
||||
|
||||
/* Get the addresses */
|
||||
addr = readl(&sdr_ctrl->prot_rule_addr);
|
||||
|
|
Loading…
Reference in a new issue