BMP085: Remove redundant semi-colon from return statement
Just a single ";" will do nicely. Signed-off-by: Jesper Juhl <jj@codesealer.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Родитель
933aae54be
Коммит
f80ea66808
|
@ -216,7 +216,7 @@ static s32 bmp085_get_temperature(struct bmp085_data *data, int *temperature)
|
||||||
*temperature = (x1+x2+8) >> 4;
|
*temperature = (x1+x2+8) >> 4;
|
||||||
|
|
||||||
exit:
|
exit:
|
||||||
return status;;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Загрузка…
Ссылка в новой задаче