mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
ppc4xx_sdram: Simplify sdram_ddr_size() to return
Suggested-by: BALATON Zoltan <balaton@eik.bme.hu> Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <87a64i87zp.fsf@pond.sub.org> Reviewed-by: BALATON Zoltan <balaton@eik.bme.hu> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
This commit is contained in:
parent
851fd4a01d
commit
6c5aaee4b6
1 changed files with 3 additions and 7 deletions
|
@ -192,17 +192,13 @@ static inline hwaddr sdram_ddr_base(uint32_t bcr)
|
|||
|
||||
static hwaddr sdram_ddr_size(uint32_t bcr)
|
||||
{
|
||||
hwaddr size;
|
||||
int sh;
|
||||
int sh = (bcr >> 17) & 0x7;
|
||||
|
||||
sh = (bcr >> 17) & 0x7;
|
||||
if (sh == 7) {
|
||||
size = -1;
|
||||
} else {
|
||||
size = (4 * MiB) << sh;
|
||||
return -1;
|
||||
}
|
||||
|
||||
return size;
|
||||
return (4 * MiB) << sh;
|
||||
}
|
||||
|
||||
static uint32_t sdram_ddr_dcr_read(void *opaque, int dcrn)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue