aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2012-02-05 22:50:36 +0900
committerJiri Kosina <jkosina@suse.cz>2012-02-05 17:14:48 +0100
commit496259048e6c75a212fa1c5bb863cfd6b008903c (patch)
tree33588c9c389b42608699856ba8faa5e0d8bc3aee /drivers/gpu
parentscore: Fix typo in Kconfig.debug (diff)
downloadlinux-dev-496259048e6c75a212fa1c5bb863cfd6b008903c.tar.xz
linux-dev-496259048e6c75a212fa1c5bb863cfd6b008903c.zip
drm: Fix typo in vmwgfx_drv.c
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>
Diffstat (limited to 'drivers/gpu')
-rw-r--r--drivers/gpu/drm/vmwgfx/vmwgfx_drv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c
index f390f5f9cb68..2d6f573bfff2 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_drv.c
@@ -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;
}