projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd4396f
)
iommu/omap: Fix the permissions on nr_tlb_entries
author
Suman Anna
<s-anna@ti.com>
Wed, 22 Oct 2014 22:22:28 +0000
(17:22 -0500)
committer
Joerg Roedel
<jroedel@suse.de>
Thu, 23 Oct 2014 12:32:25 +0000
(14:32 +0200)
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>
drivers/iommu/omap-iommu-debug.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/iommu/omap-iommu-debug.c
b/drivers/iommu/omap-iommu-debug.c
index 0fb92aa42c19e5719f6e04d2403fe8d5fb655102..a520438182db2fe3e3e452f7442a6e2c4184532a 100644
(file)
--- 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",
0
400, parent,
(u8 *)&obj->nr_tlb_entries);
if (!d)
goto nomem;