Skip to content

Commit

Permalink
mt7622: fix ram init (decrease to 1G)
Browse files Browse the repository at this point in the history
  • Loading branch information
frank-w committed Jun 8, 2024
1 parent 3d05ed5 commit 94ee5e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-mediatek/mt7622/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ int dram_init(void)
if (ret)
return ret;

gd->ram_size = get_ram_size((void *)gd->ram_base, SZ_2G);
gd->ram_size = get_ram_size((void *)gd->ram_base, SZ_1G);

return 0;
}
Expand Down

0 comments on commit 94ee5e4

Please sign in to comment.