diff options
author | Suman Anna <s-anna@ti.com> | 2014-10-23 02:22:32 +0400 |
---|---|---|
committer | Joerg Roedel <jroedel@suse.de> | 2014-10-23 16:33:47 +0400 |
commit | 4899a5636d535ba573a7e52b5ad7be1f886d40a3 (patch) | |
tree | 887714f707ac73a044ff8db158dd0cc49992bca2 /drivers/iommu/omap-iommu.h | |
parent | c55caec124512d8192ff21eb3c08df55c94f2db3 (diff) | |
download | linux-4899a5636d535ba573a7e52b5ad7be1f886d40a3.tar.xz |
iommu/omap: Do not export unneeded functions
The following functions were exported previously for usage by
the OMAP IOMMU debug module:
omap_iommu_dump_ctx()
omap_dump_tlb_entries()
omap_iopgtable_store_entry()
These functions need not be exported anymore as the OMAP IOMMU
debugfs code is integrated with the OMAP IOMMU driver, and
there won't be external users for these functions. So, remove
the EXPORT_SYMBOL_GPL on these. The omap_iopgtable_store_entry()
is also made internal only, after making the 'pagetable' debugfs
entry read-only.
Signed-off-by: Suman Anna <s-anna@ti.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Diffstat (limited to 'drivers/iommu/omap-iommu.h')
-rw-r--r-- | drivers/iommu/omap-iommu.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/iommu/omap-iommu.h b/drivers/iommu/omap-iommu.h index b18ceccd4845..d736630df3c8 100644 --- a/drivers/iommu/omap-iommu.h +++ b/drivers/iommu/omap-iommu.h @@ -190,9 +190,6 @@ static inline struct omap_iommu *dev_to_omap_iommu(struct device *dev) /* * global functions */ -extern int -omap_iopgtable_store_entry(struct omap_iommu *obj, struct iotlb_entry *e); - #ifdef CONFIG_OMAP_IOMMU_DEBUG extern ssize_t omap_iommu_dump_ctx(struct omap_iommu *obj, char *buf, ssize_t len); |