diff options
author | Alexandre Courbot <acourbot@nvidia.com> | 2014-02-09 18:43:18 +0900 |
---|---|---|
committer | Thomas Hellstrom <thellstrom@vmware.com> | 2014-02-18 14:01:48 +0100 |
commit | 728a0cdf065b9f42d1ff25d94858f824bb0989ba (patch) | |
tree | d130572157babcd60548367fbbee9fa8c3eb87ee | |
parent | c2288d4d3830946d91ae7aba599d34828d07f103 (diff) |
drm/ttm: declare 'struct device' in ttm_page_alloc.h
Declare 'struct device' explicitly in ttm_page_alloc.h as this file
does not include any file declaring it. This removes the following
warning:
warning: 'struct device' declared inside parameter list
Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
Reviewed-by: Thierry Reding <treding@nvidia.com>
-rw-r--r-- | include/drm/ttm/ttm_page_alloc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/drm/ttm/ttm_page_alloc.h b/include/drm/ttm/ttm_page_alloc.h index d1f61bfe0ebe..49a828425fa2 100644 --- a/include/drm/ttm/ttm_page_alloc.h +++ b/include/drm/ttm/ttm_page_alloc.h @@ -29,6 +29,8 @@ #include <drm/ttm/ttm_bo_driver.h> #include <drm/ttm/ttm_memory.h> +struct device; + /** * Initialize pool allocator. */ |