projects
/
linux-edison.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
933aae5
)
BMP085: Remove redundant semi-colon from return statement
author
Jesper Juhl
<jj@chaosbits.net>
Sat, 17 Dec 2011 22:52:27 +0000
(23:52 +0100)
committer
Greg Kroah-Hartman
<gregkh@suse.de>
Wed, 4 Jan 2012 23:21:56 +0000
(15:21 -0800)
Just a single ";" will do nicely.
Signed-off-by: Jesper Juhl <jj@codesealer.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/misc/bmp085.c
patch
|
blob
|
history
diff --git
a/drivers/misc/bmp085.c
b/drivers/misc/bmp085.c
index
5f898cb
..
b29a2be
100644
(file)
--- 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;
}
/*