From: Jesper Juhl Date: Sat, 17 Dec 2011 22:52:27 +0000 (+0100) Subject: BMP085: Remove redundant semi-colon from return statement X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f80ea66808b45d19abeb66db936b8f797a2628ff;p=linux.git BMP085: Remove redundant semi-colon from return statement Just a single ";" will do nicely. Signed-off-by: Jesper Juhl Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/misc/bmp085.c b/drivers/misc/bmp085.c index 5f898cb706a64..b29a2be245911 100644 --- a/drivers/misc/bmp085.c +++ b/drivers/misc/bmp085.c @@ -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; } /*