Skip to content

Commit

Permalink
isl29020: Remove a redundant semi-colon from return statement
Browse files Browse the repository at this point in the history
One is enough.

Signed-off-by: Jesper Juhl <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
  • Loading branch information
jjuhl authored and gregkh committed Jan 4, 2012
1 parent f80ea66 commit 2a5ac6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/misc/isl29020.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ static int als_set_default_config(struct i2c_client *client)
dev_err(&client->dev, "default write failed.");
return retval;
}
return 0;;
return 0;
}

static int isl29020_probe(struct i2c_client *client,
Expand Down

0 comments on commit 2a5ac6f

Please sign in to comment.