aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/iommu/omap-iommu-debug.c
diff options
context:
space:
mode:
authorSuman Anna <s-anna@ti.com>2014-10-22 17:22:28 -0500
committerJoerg Roedel <jroedel@suse.de>2014-10-23 14:32:25 +0200
commit68570a744631ab4f2d378c9d7ef794e66e623a81 (patch)
tree02226b3cc1ec29ff6a7465d3e02cd97126b2420c /drivers/iommu/omap-iommu-debug.c
parentiommu/omap: Consolidate OMAP IOMMU modules (diff)
downloadlinux-dev-68570a744631ab4f2d378c9d7ef794e66e623a81.tar.xz
linux-dev-68570a744631ab4f2d378c9d7ef794e66e623a81.zip
iommu/omap: Fix the permissions on nr_tlb_entries
The permissions on the debugfs entry "nr_tlb_entries" should have been octal, not decimal, so fix it. 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-debug.c')
-rw-r--r--drivers/iommu/omap-iommu-debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iommu/omap-iommu-debug.c b/drivers/iommu/omap-iommu-debug.c
index 0fb92aa42c19..a520438182db 100644
--- a/drivers/iommu/omap-iommu-debug.c
+++ b/drivers/iommu/omap-iommu-debug.c
@@ -256,7 +256,7 @@ static int iommu_debug_register(struct device *dev, void *data)
goto nomem;
parent = d;
- d = debugfs_create_u8("nr_tlb_entries", 400, parent,
+ d = debugfs_create_u8("nr_tlb_entries", 0400, parent,
(u8 *)&obj->nr_tlb_entries);
if (!d)
goto nomem;