diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2014-10-03 01:25:25 (GMT) |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2014-10-04 11:31:05 (GMT) |
commit | ef0d5454930aa687ac2c2337107391f1389aa0f1 (patch) | |
tree | 97f6507e20199b76c8badbe61e836d532bd2da2c /drivers/iio/adc/vf610_adc.c | |
parent | 9da64c25ffefa60b969c64176098ae616219f759 (diff) | |
download | linux-ef0d5454930aa687ac2c2337107391f1389aa0f1.tar.xz |
iio: adc: vf610: SIMPLE_DEV_PM_OPS can fit on a single line
No need to call the SIMPLE_DEV_PM_OPS() macro in several lines.
It can fit into the 80-column range.
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'drivers/iio/adc/vf610_adc.c')
-rw-r--r-- | drivers/iio/adc/vf610_adc.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/iio/adc/vf610_adc.c b/drivers/iio/adc/vf610_adc.c index 767e9b9..d47fff0 100644 --- a/drivers/iio/adc/vf610_adc.c +++ b/drivers/iio/adc/vf610_adc.c @@ -716,9 +716,7 @@ disable_reg: } #endif -static SIMPLE_DEV_PM_OPS(vf610_adc_pm_ops, - vf610_adc_suspend, - vf610_adc_resume); +static SIMPLE_DEV_PM_OPS(vf610_adc_pm_ops, vf610_adc_suspend, vf610_adc_resume); static struct platform_driver vf610_adc_driver = { .probe = vf610_adc_probe, |