Commit a3c089b9 authored by Tom Rix's avatar Tom Rix Committed by Jonathan Cameron
Browse files

iio: remove unneeded break

parent d884da1a
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -593,13 +593,11 @@ static int meson_sar_adc_iio_info_read_raw(struct iio_dev *indio_dev,
	case IIO_CHAN_INFO_RAW:
		return meson_sar_adc_get_sample(indio_dev, chan, NO_AVERAGING,
						ONE_SAMPLE, val);
		break;

	case IIO_CHAN_INFO_AVERAGE_RAW:
		return meson_sar_adc_get_sample(indio_dev, chan,
						MEAN_AVERAGING, EIGHT_SAMPLES,
						val);
		break;

	case IIO_CHAN_INFO_SCALE:
		if (chan->type == IIO_VOLTAGE) {
+0 −1
Original line number Diff line number Diff line
@@ -486,7 +486,6 @@ static int bmi160_write_raw(struct iio_dev *indio_dev,
	case IIO_CHAN_INFO_SCALE:
		return bmi160_set_scale(data,
					bmi160_to_sensor(chan->type), val2);
		break;
	case IIO_CHAN_INFO_SAMP_FREQ:
		return bmi160_set_odr(data, bmi160_to_sensor(chan->type),
				      val, val2);