i915/gvt: Fix spelling mistake "vender" -> "vendor"
authorColin Ian King <colin.i.king@gmail.com>
Thu, 2 Feb 2023 12:50:18 +0000 (12:50 +0000)
committerZhenyu Wang <zhenyuw@linux.intel.com>
Thu, 23 Feb 2023 05:45:30 +0000 (13:45 +0800)
There is a spelling mistake in a literal string. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Acked-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20230202125018.285523-1-colin.i.king@gmail.com
drivers/gpu/drm/i915/gvt/firmware.c

index a683c22..9b4b50f 100644 (file)
@@ -171,7 +171,7 @@ static int verify_firmware(struct intel_gvt *gvt,
        mem = (fw->data + h->cfg_space_offset);
 
        id = *(u16 *)(mem + PCI_VENDOR_ID);
-       VERIFY("vender id", id, pdev->vendor);
+       VERIFY("vendor id", id, pdev->vendor);
 
        id = *(u16 *)(mem + PCI_DEVICE_ID);
        VERIFY("device id", id, pdev->device);