Skip to content

Commit

Permalink
iommu/omap: Align code with open parenthesis
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Joerg Roedel <[email protected]>
  • Loading branch information
sumananna authored and joergroedel committed Apr 5, 2016
1 parent 433c434 commit a5c0e0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/iommu/omap-iommu-debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit a5c0e0b

Please sign in to comment.