diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2013-02-01 13:44:33 -0500 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2013-02-04 12:53:17 -0500 |
commit | 4cfe7629be069d6e951694fecf76f9221badc638 (patch) | |
tree | 39591bcf309ee584e7ffcd0b52f439df9fd8f847 /drivers/gpu/drm/radeon | |
parent | 7f04f0816848a51b761db6e7958e42f127e8264c (diff) |
drm: fix compile failure by including <linux/swiotlb.h>
On tile architecture (with "make allyesconfig") including
<linux/swiotlb.h> is required to call swiotlb_nr_tbl().
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Acked-by: Maarten Lankhorst <maarten.lankhorst@canonical.com>
Diffstat (limited to 'drivers/gpu/drm/radeon')
-rw-r--r-- | drivers/gpu/drm/radeon/radeon_ttm.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/radeon/radeon_ttm.c b/drivers/gpu/drm/radeon/radeon_ttm.c index 1d8ff2f850ba..93f760e27a92 100644 --- a/drivers/gpu/drm/radeon/radeon_ttm.c +++ b/drivers/gpu/drm/radeon/radeon_ttm.c | |||
@@ -38,6 +38,7 @@ | |||
38 | #include <drm/radeon_drm.h> | 38 | #include <drm/radeon_drm.h> |
39 | #include <linux/seq_file.h> | 39 | #include <linux/seq_file.h> |
40 | #include <linux/slab.h> | 40 | #include <linux/slab.h> |
41 | #include <linux/swiotlb.h> | ||
41 | #include "radeon_reg.h" | 42 | #include "radeon_reg.h" |
42 | #include "radeon.h" | 43 | #include "radeon.h" |
43 | 44 | ||