PCI/VGA: Use unsigned format string to print lock counts
authorBjorn Helgaas <bhelgaas@google.com>
Thu, 24 Feb 2022 22:47:52 +0000 (16:47 -0600)
committerBjorn Helgaas <bhelgaas@google.com>
Thu, 10 Mar 2022 00:31:32 +0000 (18:31 -0600)
commitd5109fe4d1ecba04d3f6903ab0421188d1420d22
tree6a6a6381cd0c7a908bad93272be50c82c3572e26
parent4e6c91847a7fa94a6a0caeeb388718b8ae005d56
PCI/VGA: Use unsigned format string to print lock counts

In struct vga_device, io_lock_cnt and mem_lock_cnt are unsigned, but we
previously printed them with "%d", the signed decimal format.  Print them
with the unsigned format "%u" instead.

Link: https://lore.kernel.org/r/20220224224753.297579-11-helgaas@kernel.org
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/pci/vgaarb.c