Skip to content

Commit

Permalink
Merge branch 'work-next' into staging-next
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Kroah-Hartman committed Dec 8, 2011
2 parents 1932432 + 5a2a6e1 commit 106e7cf
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions drivers/staging/iio/industrialio-buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ static ssize_t iio_scan_el_store(struct device *dev,
error_ret:
mutex_unlock(&indio_dev->mlock);

return ret ? ret : len;
return ret < 0 ? ret : len;

}

Expand Down Expand Up @@ -624,16 +624,8 @@ int iio_scan_mask_query(struct iio_dev *indio_dev,

if (!buffer->scan_mask)
return 0;
if (indio_dev->available_scan_masks)
mask = iio_scan_mask_match(indio_dev->available_scan_masks,
indio_dev->masklength,
buffer->scan_mask);
else
mask = buffer->scan_mask;
if (!mask)
return 0;

return test_bit(bit, mask);
return test_bit(bit, buffer->scan_mask);
};
EXPORT_SYMBOL_GPL(iio_scan_mask_query);

Expand Down

0 comments on commit 106e7cf

Please sign in to comment.