The function show_registers_cap() us only used in the nvme-print.c,
mark this function static.
Signed-off-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
json_print_object(root, NULL);
}
-void show_registers_cap(struct nvme_bar_cap *cap)
+static void show_registers_cap(struct nvme_bar_cap *cap)
{
printf("\tMemory Page Size Maximum (MPSMAX): %u bytes\n", 1 << (12 + ((cap->mpsmax_mpsmin & 0xf0) >> 4)));
printf("\tMemory Page Size Minimum (MPSMIN): %u bytes\n", 1 << (12 + (cap->mpsmax_mpsmin & 0x0f)));