Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
}

/*