1
0
Fork 0

iommu/omap: Align code with open parenthesis

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>
steinar/wifi_calib_4_9_kernel
Suman Anna 2016-04-04 17:46:21 -05:00 committed by Joerg Roedel
parent 433c434a26
commit a5c0e0b4ac
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}