Skip to content

Commit

Permalink
BMP085: Remove redundant semi-colon from return statement
Browse files Browse the repository at this point in the history
Just a single ";" will do nicely.

Signed-off-by: Jesper Juhl <jj@codesealer.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Jesper Juhl authored and Greg Kroah-Hartman committed Jan 4, 2012
1 parent 933aae5 commit f80ea66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/misc/bmp085.c
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ static s32 bmp085_get_temperature(struct bmp085_data *data, int *temperature)
*temperature = (x1+x2+8) >> 4;

exit:
return status;;
return status;
}

/*
Expand Down

0 comments on commit f80ea66

Please sign in to comment.