2016-03-13 00:17:39

by Cosmin-Gabriel Samoila

[permalink] [raw]
Subject: [PATCH] iommu: io-pgtable: fixed a brace coding style issue.

Fixed a coding style issue.

Signed-off-by: Cosmin-Gabriel Samoila <[email protected]>
---
drivers/iommu/io-pgtable.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/iommu/io-pgtable.c b/drivers/iommu/io-pgtable.c
index 6f2e319..a4a9a42 100644
--- a/drivers/iommu/io-pgtable.c
+++ b/drivers/iommu/io-pgtable.c
@@ -25,8 +25,7 @@
#include "io-pgtable.h"

static const struct io_pgtable_init_fns *
-io_pgtable_init_table[IO_PGTABLE_NUM_FMTS] =
-{
+io_pgtable_init_table[IO_PGTABLE_NUM_FMTS] = {
#ifdef CONFIG_IOMMU_IO_PGTABLE_LPAE
[ARM_32_LPAE_S1] = &io_pgtable_arm_32_lpae_s1_init_fns,
[ARM_32_LPAE_S2] = &io_pgtable_arm_32_lpae_s2_init_fns,
--
1.9.1


2016-04-05 13:34:59

by Joerg Roedel

[permalink] [raw]
Subject: Re: [PATCH] iommu: io-pgtable: fixed a brace coding style issue.

On Sun, Mar 13, 2016 at 02:17:27AM +0200, Cosmin-Gabriel Samoila wrote:
> Fixed a coding style issue.
>
> Signed-off-by: Cosmin-Gabriel Samoila <[email protected]>
> ---
> drivers/iommu/io-pgtable.c | 3 +--
> 1 file changed, 1 insertion(+), 2 deletions(-)

Applied, thanks.