igb: remove h from printk format specifier
authorTom Rix <trix@redhat.com>
Wed, 23 Dec 2020 19:44:25 +0000 (11:44 -0800)
committerTony Nguyen <anthony.l.nguyen@intel.com>
Thu, 4 Feb 2021 00:32:18 +0000 (16:32 -0800)
This change fixes the checkpatch warning described in this
commit cbacb5ab0aa0 ("docs: printk-formats: Stop encouraging use of
unnecessary %h[xudi] and %hh[xudi]")

Standard integer promotion is already done and %hx and %hhx is useless
so do not encourage the use of %hh[xudi] or %h[xudi].

Signed-off-by: Tom Rix <trix@redhat.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
drivers/net/ethernet/intel/igb/igb_main.c

index 23e50de..bd0594a 100644 (file)
@@ -3156,7 +3156,7 @@ static int igb_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
         * the PCIe SR-IOV capability.
         */
        if (pdev->is_virtfn) {
-               WARN(1, KERN_ERR "%s (%hx:%hx) should not be a VF!\n",
+               WARN(1, KERN_ERR "%s (%x:%x) should not be a VF!\n",
                        pci_name(pdev), pdev->vendor, pdev->device);
                return -EINVAL;
        }