summaryrefslogtreecommitdiffstats
path: root/usr.sbin/mfiutil/mfi_show.c
diff options
context:
space:
mode:
authored <ed@FreeBSD.org>2012-10-20 10:20:06 +0000
committered <ed@FreeBSD.org>2012-10-20 10:20:06 +0000
commite65c2d3d073186914cbb3ad3494d5da8b3bde8d5 (patch)
treee44d026c3e12cba359d8412f3c1e41e63e731f60 /usr.sbin/mfiutil/mfi_show.c
parentff852f67bd163fdd634ba77c0927e433933e3592 (diff)
downloadFreeBSD-src-e65c2d3d073186914cbb3ad3494d5da8b3bde8d5.zip
FreeBSD-src-e65c2d3d073186914cbb3ad3494d5da8b3bde8d5.tar.gz
Remove redundant code.
Both mfi_flash.c and mfi_show.c contain very similar functions to print a list of firmwares. Move these routines into mfiutil.c. Reported by: jhb
Diffstat (limited to 'usr.sbin/mfiutil/mfi_show.c')
-rw-r--r--usr.sbin/mfiutil/mfi_show.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/usr.sbin/mfiutil/mfi_show.c b/usr.sbin/mfiutil/mfi_show.c
index c8b4377..be395bb 100644
--- a/usr.sbin/mfiutil/mfi_show.c
+++ b/usr.sbin/mfiutil/mfi_show.c
@@ -570,34 +570,6 @@ error:
}
MFI_COMMAND(show, drives, show_drives);
-static void
-scan_firmware(struct mfi_info_component *comp)
-{
- int len;
-
- len = strlen(comp->name);
- if (fw_name_width < len)
- fw_name_width = len;
- len = strlen(comp->version);
- if (fw_version_width < len)
- fw_version_width = len;
- len = strlen(comp->build_date);
- if (fw_date_width < len)
- fw_date_width = len;
- len = strlen(comp->build_time);
- if (fw_time_width < len)
- fw_time_width = len;
-}
-
-static void
-display_firmware(struct mfi_info_component *comp, const char *tag)
-{
-
- printf("%-*s %-*s %-*s %-*s %s\n", fw_name_width, comp->name,
- fw_version_width, comp->version, fw_date_width, comp->build_date,
- fw_time_width, comp->build_time, tag);
-}
-
static int
show_firmware(int ac, char **av __unused)
{
OpenPOWER on IntegriCloud