From b3266af1e1b536ceef37c6a236871b5ea0a7a389 Mon Sep 17 00:00:00 2001 From: Marek Szyprowski Date: Thu, 26 Nov 2020 15:23:41 +0100 Subject: [PATCH] disk: dos: make some functions static Make function not used outside this file static. Signed-off-by: Marek Szyprowski Change-Id: I37039841c3a1530d5a81e5917f2f497b3bedcbbc --- disk/part_dos.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/disk/part_dos.c b/disk/part_dos.c index 3b79b9b..2c4ad0b 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); -- 2.7.4