Skip to content

Commit

Permalink
extcon: max8997: Delete unneeded initialization in max8997_muic_set_p…
Browse files Browse the repository at this point in the history
…ath()

The variable "ret" will be set to an appropriate value a bit later.
Thus this patch omits the explicit initialization at the beginning.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
  • Loading branch information
Markus Elfring authored and Chanwoo Choi committed Nov 27, 2017
1 parent 2d18baf commit 00c2f52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/extcon/extcon-max8997.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ static int max8997_muic_set_debounce_time(struct max8997_muic_info *info,
static int max8997_muic_set_path(struct max8997_muic_info *info,
u8 val, bool attached)
{
int ret = 0;
int ret;
u8 ctrl1, ctrl2 = 0;

if (attached)
Expand Down

0 comments on commit 00c2f52

Please sign in to comment.