diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-06-04 23:35:26 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-06-04 23:35:26 +0300 |
| commit | abb11558ee2a2943023f2e9727976a8adace3bc8 (patch) | |
| tree | 9303176b749d4ba9db92980c93c510c63684ffd1 /common/pmem.c | |
| parent | 3b8990f17c50e946bc1b9bca5997a25d69d0757c (diff) | |
| download | kmi-abb11558ee2a2943023f2e9727976a8adace3bc8.tar.gz kmi-abb11558ee2a2943023f2e9727976a8adace3bc8.zip | |
clarify a few things
Diffstat (limited to 'common/pmem.c')
| -rw-r--r-- | common/pmem.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/pmem.c b/common/pmem.c index 0fa647f..2a8393c 100644 --- a/common/pmem.c +++ b/common/pmem.c @@ -647,7 +647,8 @@ void init_pmem(void *fdt) info("found fdt at [%lx - %lx]\n", fdt_base, fdt_top); /* find probably most suitable contiguous region of ram for our physical - * ram map */ + * ram map */ + /** @todo this could be better? */ pm_t pmap_base = align_up(MAX(initrd_top, fdt_top), sizeof(int)); info("choosing to place pmem map at %lx\n", pmap_base); |
