projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
433c434
)
iommu/omap: Align code with open parenthesis
author
Suman Anna
<s-anna@ti.com>
Mon, 4 Apr 2016 22:46:21 +0000
(17:46 -0500)
committer
Joerg Roedel
<jroedel@suse.de>
Tue, 5 Apr 2016 15:53:20 +0000
(17:53 +0200)
This patch fixes one existing alignment checkpatch check
warning of the type "Alignment should match open parenthesis"
in the OMAP IOMMU debug source file.
Signed-off-by: Suman Anna <s-anna@ti.com>
Signed-off-by: Joerg Roedel <jroedel@suse.de>
drivers/iommu/omap-iommu-debug.c
patch
|
blob
|
history
diff --git
a/drivers/iommu/omap-iommu-debug.c
b/drivers/iommu/omap-iommu-debug.c
index 9bc20e2119a35412df6584258c4e7a1c2d3b9687..505548aafeff2276c82c64de4702aae37ddfe15b 100644
(file)
--- a/
drivers/iommu/omap-iommu-debug.c
+++ b/
drivers/iommu/omap-iommu-debug.c
@@
-136,7
+136,7
@@
static ssize_t iotlb_dump_cr(struct omap_iommu *obj, struct cr_regs *cr,
struct seq_file *s)
{
seq_printf(s, "%08x %08x %01x\n", cr->cam, cr->ram,
-
(cr->cam & MMU_CAM_P) ? 1 : 0);
+ (cr->cam & MMU_CAM_P) ? 1 : 0);
return 0;
}