Skip to content

Commit

Permalink
extcon: max77693: Fix checkpatch warning
Browse files Browse the repository at this point in the history
Fixes the following warning:
WARNING: space prohibited before semicolon

Signed-off-by: Sachin Kamat <[email protected]>
Signed-off-by: Chanwoo Choi <[email protected]>
  • Loading branch information
Sachin Kamat authored and chanwoochoi committed Sep 27, 2013
1 parent d97abdd commit a33411b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/extcon/extcon-max77693.c
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ static void max77693_muic_irq_work(struct work_struct *work)

mutex_lock(&info->mutex);

for (i = 0 ; i < ARRAY_SIZE(muic_irqs) ; i++)
for (i = 0; i < ARRAY_SIZE(muic_irqs); i++)
if (info->irq == muic_irqs[i].virq)
irq_type = muic_irqs[i].irq;

Expand Down Expand Up @@ -1188,7 +1188,7 @@ static int max77693_muic_probe(struct platform_device *pdev)
num_init_data = ARRAY_SIZE(default_init_data);
}

for (i = 0 ; i < num_init_data ; i++) {
for (i = 0; i < num_init_data; i++) {
enum max77693_irq_source irq_src
= MAX77693_IRQ_GROUP_NR;

Expand Down

0 comments on commit a33411b

Please sign in to comment.