iio:pressure:bmp280: cleanup
authorHartmut Knaack <knaack.h@gmx.de>
Fri, 19 Dec 2014 22:59:25 +0000 (23:59 +0100)
committerJonathan Cameron <jic23@kernel.org>
Fri, 26 Dec 2014 10:32:34 +0000 (10:32 +0000)
commit44cf3798a3de3ebd8e5abe6c7fd5ee5c09b049de
tree08c61eea273c85003814be6f7d6afd3c2f39cab7
parent762c4da347109398bbcc7783b7ce2496664442ed
iio:pressure:bmp280: cleanup

The calculations for temperature and pressure compensation were already slightly
optimized in comparison to the datasheet. So, it makes sense to optimize even a
bit more, making proper use of C operators:
  - variable t in bmp280_compensate_temp() can be eliminated by directly
    returning the result of the relevant equation.
  - make use of the += operator and eliminate an unnecessary parenthesis level in
    bmp280_compensate_press().
When the initialization of the ctrl_meas register fails, the error message will
now mention the right register name.
During probe, i2c_set_clientdata() is called, although it is not necessary. Drop
it.

Signed-off-by: Hartmut Knaack <knaack.h@gmx.de>
Reviewed-by: Vlad Dogaru <vlad.dogaru@intel.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/pressure/bmp280.c