diff options
author | Jerome Glisse <jglisse@redhat.com> | 2011-11-01 17:48:33 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2011-11-29 10:36:17 -0500 |
commit | 168ebdef0295f6f0045f6fb726a2fdc37f66a7a4 (patch) | |
tree | 58da67f618bf5f5d706e1987f1e2d588b1c6ad36 /include/drm | |
parent | 5ea0e2337ac5b3ac2e77497dcb61538906e32444 (diff) |
drm/ttm: remove unused backend flags field
This field is not use by any of the driver just drop it.
Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com>
Diffstat (limited to 'include/drm')
-rw-r--r-- | include/drm/ttm/ttm_bo_driver.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/drm/ttm/ttm_bo_driver.h b/include/drm/ttm/ttm_bo_driver.h index 9da182b400ec..6d171406e1ee 100644 --- a/include/drm/ttm/ttm_bo_driver.h +++ b/include/drm/ttm/ttm_bo_driver.h @@ -106,7 +106,6 @@ struct ttm_backend_func { * struct ttm_backend * * @bdev: Pointer to a struct ttm_bo_device. - * @flags: For driver use. * @func: Pointer to a struct ttm_backend_func that describes * the backend methods. * @@ -114,7 +113,6 @@ struct ttm_backend_func { struct ttm_backend { struct ttm_bo_device *bdev; - uint32_t flags; struct ttm_backend_func *func; }; |