diff options
author | Hiroshi DOYU <hdoyu@nvidia.com> | 2012-01-16 10:29:05 +0200 |
---|---|---|
committer | Rohan Somvanshi <rsomvanshi@nvidia.com> | 2012-01-23 06:20:04 -0800 |
commit | 6caed87c74b69f246e796c59b35f0bdc3979b151 (patch) | |
tree | ed141aa2c625f1a433a62c3329ebdec9b6322deb /drivers/gpu | |
parent | c3da52e23a302de9680be786180b8126f2b25645 (diff) |
gpu: ion: Remove unnecessary header inclusions
This should be independent of any SoCs. Remove tegra specific header
inclusion and other unnecessary ones too.
Change-Id: I2fcc7481b535f7c9348d36a1974e2b8b8883046d
Signed-off-by: Hiroshi DOYU <hdoyu@nvidia.com>
Reviewed-on: http://git-master/r/75528
Reviewed-by: Automatic_Commit_Validation_User
Reviewed-by: Krishna Reddy <vdumpa@nvidia.com>
Reviewed-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Varun Wadekar <vwadekar@nvidia.com>
Diffstat (limited to 'drivers/gpu')
-rw-r--r-- | drivers/gpu/ion/ion_iommu_heap.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/gpu/ion/ion_iommu_heap.c b/drivers/gpu/ion/ion_iommu_heap.c index f0246cb39fae..106c0d075570 100644 --- a/drivers/gpu/ion/ion_iommu_heap.c +++ b/drivers/gpu/ion/ion_iommu_heap.c @@ -20,20 +20,17 @@ #define pr_fmt(fmt) "%s(): " fmt, __func__ #include <linux/spinlock.h> -#include <linux/err.h> +#include <linux/kernel.h> #include <linux/genalloc.h> #include <linux/io.h> #include <linux/ion.h> #include <linux/mm.h> -#include <linux/platform_device.h> -#include <linux/tegra_ion.h> #include <linux/scatterlist.h> #include <linux/slab.h> #include <linux/vmalloc.h> #include <linux/iommu.h> #include <linux/highmem.h> -#include <asm/page.h> #include <asm/cacheflush.h> #include "ion_priv.h" |