staging: iio: magnetometer: Remove explicit comparisons

Remove comparisons to 0 or NULL

Signed-off-by: Cristina Moraru <cristina.moraru09@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Cristina Moraru 2015-10-20 22:55:47 +03:00 коммит произвёл Greg Kroah-Hartman
Родитель 05824120e4
Коммит cd857a158a
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -334,7 +334,7 @@ static int hmc5843_get_scale_index(struct hmc5843_data *data, int val, int val2)
{ {
int i; int i;
if (val != 0) if (val)
return -EINVAL; return -EINVAL;
for (i = 0; i < data->variant->n_regval_to_nanoscale; i++) for (i = 0; i < data->variant->n_regval_to_nanoscale; i++)