[U-Boot] [PATCH] cmd: part: use MAX_SEARCH_PARTITIONS for part search

Kever Yang kever.yang at rock-chips.com
Fri Sep 7 09:37:36 UTC 2018


Use Macro instead of hard code.

Signed-off-by: Kever Yang <kever.yang at rock-chips.com>
---

 cmd/part.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/part.c b/cmd/part.c
index bee204fff0..bfb6488b0f 100644
--- a/cmd/part.c
+++ b/cmd/part.c
@@ -90,7 +90,7 @@ static int do_part_list(int argc, char * const argv[])
 		char str[512] = { '\0', };
 		disk_partition_t info;
 
-		for (p = 1; p < 128; p++) {
+		for (p = 1; p < MAX_SEARCH_PARTITIONS; p++) {
 			char t[5];
 			int r = part_get_info(desc, p, &info);
 
-- 
2.18.0



More information about the U-Boot mailing list