OSDN Git Service

gallium: Fix copy typo
authorJakob Bornecrantz <wallbraker@gmail.com>
Tue, 20 Apr 2010 22:59:38 +0000 (23:59 +0100)
committerJakob Bornecrantz <wallbraker@gmail.com>
Tue, 20 Apr 2010 22:59:38 +0000 (23:59 +0100)
src/gallium/winsys/i915/drm/i915_drm_api.c
src/gallium/winsys/i965/drm/i965_drm_api.c
src/gallium/winsys/nouveau/drm/nouveau_drm_api.c
src/gallium/winsys/radeon/drm/radeon_drm.c
src/gallium/winsys/svga/drm/vmw_screen_dri.c

index da87e51..5dfd5a7 100644 (file)
@@ -93,7 +93,7 @@ static struct drm_api i915_drm_api =
    .name = "i915",
    .driver_name = "i915",
    .create_screen = i915_drm_create_screen,
-   .destroy = NULL;
+   .destroy = NULL,
 };
 
 struct drm_api *
index 4e63646..bd4dcfc 100644 (file)
@@ -96,7 +96,7 @@ struct drm_api i965_libdrm_api =
    .name = "i965",
    .driver_name = "i915",
    .create_screen = i965_libdrm_create_screen,
-   .destroy = NULL;
+   .destroy = NULL,
 };
 
 struct drm_api *
index 88989d0..3a4bba4 100644 (file)
@@ -150,7 +150,7 @@ static struct drm_api nouveau_drm_api_hooks = {
        .name = "nouveau",
        .driver_name = "nouveau",
        .create_screen = nouveau_drm_create_screen,
-       .destroy = NULL;
+       .destroy = NULL,
 };
 
 struct drm_api *
index 667ca73..8c22738 100644 (file)
@@ -185,7 +185,7 @@ static struct drm_api radeon_drm_api_hooks = {
     .name = "radeon",
     .driver_name = "radeon",
     .create_screen = radeon_create_screen,
-    .destroy = NULL;
+    .destroy = NULL,
 };
 
 struct drm_api* drm_api_create()
index cdd1eea..f4c1642 100644 (file)
@@ -365,7 +365,7 @@ static struct drm_api vmw_drm_api_hooks = {
    .name = "vmwgfx",
    .driver_name = "vmwgfx",
    .create_screen = vmw_drm_create_screen,
-   .destroy = NULL;
+   .destroy = NULL,
 };
 
 struct drm_api* drm_api_create()