lib/ramtest: Fix ram_check() declarations
For a long time, second parameter 'stop' has been ignored. The tested range is within 1 MiB above 'start'. Change-Id: Icbf94cd6a651fbf0cd9aab97eb11f9b03f0c3c31 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/48561 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
committed by
Patrick Georgi
parent
4c4f916172
commit
e1aa9833c1
@@ -12,9 +12,9 @@ size_t ulzman(const void *src, size_t srcn, void *dst, size_t dstn);
|
||||
|
||||
/* Defined in src/lib/ramtest.c */
|
||||
/* Assumption is 32-bit addressable UC memory. */
|
||||
void ram_check(unsigned long start, unsigned long stop);
|
||||
int ram_check_nodie(unsigned long start, unsigned long stop);
|
||||
int ram_check_noprint_nodie(unsigned long start, unsigned long stop);
|
||||
void ram_check(uintptr_t start);
|
||||
int ram_check_nodie(uintptr_t start);
|
||||
int ram_check_noprint_nodie(uintptr_t start);
|
||||
void quick_ram_check_or_die(uintptr_t dst);
|
||||
|
||||
/* Defined in primitive_memtest.c */
|
||||
|
Reference in New Issue
Block a user