drm: Fix typo in vmwgfx_drv.c
authorMasanari Iida <standby24x7@gmail.com>
Sun, 5 Feb 2012 13:50:36 +0000 (22:50 +0900)
committerJiri Kosina <jkosina@suse.cz>
Sun, 5 Feb 2012 16:14:48 +0000 (17:14 +0100)
Correct spelling "unsuported" to "unsupported" in
drivers/gpu/drm/vmwgfx/vmwgfx_drv.c

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
drivers/gpu/drm/vmwgfx/vmwgfx_drv.c

index f390f5f..2d6f573 100644 (file)
@@ -430,7 +430,7 @@ static int vmw_driver_load(struct drm_device *dev, unsigned long chipset)
        svga_id = vmw_read(dev_priv, SVGA_REG_ID);
        if (svga_id != SVGA_ID_2) {
                ret = -ENOSYS;
-               DRM_ERROR("Unsuported SVGA ID 0x%x\n", svga_id);
+               DRM_ERROR("Unsupported SVGA ID 0x%x\n", svga_id);
                mutex_unlock(&dev_priv->hw_mutex);
                goto out_err0;
        }