diff options
author | David Herrmann <dh.herrmann@gmail.com> | 2013-08-14 17:07:14 +0400 |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2013-08-19 03:34:30 +0400 |
commit | 7e0e6cbd0361dfeb2507fe0f3a8dd16e78ffeeb9 (patch) | |
tree | 15655109ea42ff2bdcce0a4854b15f002a3bc2cd | |
parent | 1dda8d02acbba80444a98e71d9d419232c109e94 (diff) | |
download | linux-7e0e6cbd0361dfeb2507fe0f3a8dd16e78ffeeb9.tar.xz |
drm/ast: remove unused driver_private access
gem_bo->driver_private is never read by ast nor DRM core. No need to set
it. Besides, drm core clears it during setup, anyway.
Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
-rw-r--r-- | drivers/gpu/drm/ast/ast_ttm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/ast/ast_ttm.c b/drivers/gpu/drm/ast/ast_ttm.c index 98d670825a1a..cf1c833f73ca 100644 --- a/drivers/gpu/drm/ast/ast_ttm.c +++ b/drivers/gpu/drm/ast/ast_ttm.c @@ -321,7 +321,6 @@ int ast_bo_create(struct drm_device *dev, int size, int align, return ret; } - astbo->gem.driver_private = NULL; astbo->bo.bdev = &ast->ttm.bdev; ast_ttm_placement(astbo, TTM_PL_FLAG_VRAM | TTM_PL_FLAG_SYSTEM); |