From: Marek Szyprowski Date: Thu, 26 Nov 2020 14:23:41 +0000 (+0100) Subject: disk: dos: make some functions static X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=89beaf23470fe871175292654ff97f8db39f59c7;p=platform%2Fkernel%2Fu-boot.git disk: dos: make some functions static Make function not used outside this file static. Signed-off-by: Marek Szyprowski Change-Id: I37039841c3a1530d5a81e5917f2f497b3bedcbbc --- diff --git a/disk/part_dos.c b/disk/part_dos.c index 3b79b9b1b8..2c4ad0b6ba 100644 --- a/disk/part_dos.c +++ b/disk/part_dos.c @@ -302,13 +302,13 @@ static int part_get_info_extended(struct blk_desc *dev_desc, return -1; } -void part_print_dos(struct blk_desc *dev_desc) +static void part_print_dos(struct blk_desc *dev_desc) { printf("Part\tStart Sector\tNum Sectors\tUUID\t\tType\n"); print_partition_extended(dev_desc, 0, 0, 1, 0); } -int part_get_info_dos(struct blk_desc *dev_desc, int part, +static int part_get_info_dos(struct blk_desc *dev_desc, int part, struct disk_partition *info) { return part_get_info_extended(dev_desc, 0, 0, 1, part, info, 0);