Commit f80ea668 authored by Jesper Juhl's avatar Jesper Juhl Committed by Greg Kroah-Hartman

BMP085: Remove redundant semi-colon from return statement

Just a single ";" will do nicely.
Signed-off-by: default avatarJesper Juhl <jj@codesealer.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 933aae54
......@@ -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;
}
/*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment