mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-22 20:23:57 +08:00
iio: accel: bma220: Remove unneeded blank lines
There are few blank lines that split structure definitions with their users. Remove them to increase readability. While here, update copyright year. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20200831090813.78841-8-andriy.shevchenko@linux.intel.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
2b09b41dba
commit
f530f88246
@ -2,7 +2,7 @@
|
|||||||
/**
|
/**
|
||||||
* BMA220 Digital triaxial acceleration sensor driver
|
* BMA220 Digital triaxial acceleration sensor driver
|
||||||
*
|
*
|
||||||
* Copyright (c) 2016, Intel Corporation.
|
* Copyright (c) 2016,2020 Intel Corporation.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/bits.h>
|
#include <linux/bits.h>
|
||||||
@ -302,7 +302,6 @@ static __maybe_unused int bma220_resume(struct device *dev)
|
|||||||
|
|
||||||
return bma220_read_reg(data->spi_device, BMA220_REG_SUSPEND);
|
return bma220_read_reg(data->spi_device, BMA220_REG_SUSPEND);
|
||||||
}
|
}
|
||||||
|
|
||||||
static SIMPLE_DEV_PM_OPS(bma220_pm_ops, bma220_suspend, bma220_resume);
|
static SIMPLE_DEV_PM_OPS(bma220_pm_ops, bma220_suspend, bma220_resume);
|
||||||
|
|
||||||
static const struct spi_device_id bma220_spi_id[] = {
|
static const struct spi_device_id bma220_spi_id[] = {
|
||||||
@ -314,7 +313,6 @@ static const struct acpi_device_id bma220_acpi_id[] = {
|
|||||||
{"BMA0220", 0},
|
{"BMA0220", 0},
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
MODULE_DEVICE_TABLE(spi, bma220_spi_id);
|
MODULE_DEVICE_TABLE(spi, bma220_spi_id);
|
||||||
|
|
||||||
static struct spi_driver bma220_driver = {
|
static struct spi_driver bma220_driver = {
|
||||||
@ -327,7 +325,6 @@ static struct spi_driver bma220_driver = {
|
|||||||
.remove = bma220_remove,
|
.remove = bma220_remove,
|
||||||
.id_table = bma220_spi_id,
|
.id_table = bma220_spi_id,
|
||||||
};
|
};
|
||||||
|
|
||||||
module_spi_driver(bma220_driver);
|
module_spi_driver(bma220_driver);
|
||||||
|
|
||||||
MODULE_AUTHOR("Tiberiu Breana <tiberiu.a.breana@intel.com>");
|
MODULE_AUTHOR("Tiberiu Breana <tiberiu.a.breana@intel.com>");
|
||||||
|
Loading…
Reference in New Issue
Block a user