Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 455f0049 authored by George McCollister's avatar George McCollister Committed by Jonathan Cameron
Browse files

iio: as3935: Remove unnecessary semicolons

parent ce069484
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ static int as3935_read(struct as3935_state *st, unsigned int reg, int *val)
	*val = ret;

	return 0;
};
}

static int as3935_write(struct as3935_state *st,
				unsigned int reg,
@@ -107,7 +107,7 @@ static int as3935_write(struct as3935_state *st,
	buf[1] = val;

	return spi_write(st->spi, buf, 2);
};
}

static ssize_t as3935_sensor_sensitivity_show(struct device *dev,
					struct device_attribute *attr,
@@ -122,7 +122,7 @@ static ssize_t as3935_sensor_sensitivity_show(struct device *dev,
	val = (val & AS3935_AFE_MASK) >> 1;

	return sprintf(buf, "%d\n", val);
};
}

static ssize_t as3935_sensor_sensitivity_store(struct device *dev,
					struct device_attribute *attr,
@@ -142,7 +142,7 @@ static ssize_t as3935_sensor_sensitivity_store(struct device *dev,
	as3935_write(st, AS3935_AFE_GAIN, val << 1);

	return len;
};
}

static IIO_DEVICE_ATTR(sensor_sensitivity, S_IRUGO | S_IWUSR,
	as3935_sensor_sensitivity_show, as3935_sensor_sensitivity_store, 0);
@@ -214,7 +214,7 @@ static irqreturn_t as3935_trigger_handler(int irq, void *private)
	iio_trigger_notify_done(indio_dev->trig);

	return IRQ_HANDLED;
};
}

static const struct iio_trigger_ops iio_interrupt_trigger_ops = {
	.owner = THIS_MODULE,
@@ -238,7 +238,7 @@ static void as3935_event_work(struct work_struct *work)
		dev_warn(&st->spi->dev, "noise level is too high");
		break;
	}
};
}

static irqreturn_t as3935_interrupt_handler(int irq, void *private)
{
@@ -417,7 +417,7 @@ static int as3935_probe(struct spi_device *spi)
	iio_trigger_unregister(st->trig);

	return ret;
};
}

static int as3935_remove(struct spi_device *spi)
{
@@ -429,7 +429,7 @@ static int as3935_remove(struct spi_device *spi)
	iio_trigger_unregister(st->trig);

	return 0;
};
}

static const struct spi_device_id as3935_id[] = {
	{"as3935", 0},