diff options
| author | Roberta Dobrescu <[email protected]> | 2014-09-25 20:09:11 +0300 |
|---|---|---|
| committer | Greg Kroah-Hartman <[email protected]> | 2014-09-28 22:20:30 -0400 |
| commit | 2bd7e245ea46dac4defdbed873c1cebe6c1e9c80 (patch) | |
| tree | c83d6e58aa884eb1a11382f87dc455e9a16859f5 | |
| parent | 10b2e445aa31c6e4118bbb928d76f1f7a6431402 (diff) | |
staging: iio: light: Add a blank line after declarations
This fixes the following checkpatch.pl warning:
WARNING: Missing a blank line after declarations
Signed-off-by: Roberta Dobrescu <[email protected]>
Acked-by: Daniel Baluta <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
| -rw-r--r-- | drivers/staging/iio/light/tsl2x7x_core.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/staging/iio/light/tsl2x7x_core.c b/drivers/staging/iio/light/tsl2x7x_core.c index ab338e3ddd05..e0d88fa2a5b5 100644 --- a/drivers/staging/iio/light/tsl2x7x_core.c +++ b/drivers/staging/iio/light/tsl2x7x_core.c @@ -1964,6 +1964,7 @@ static int tsl2x7x_suspend(struct device *dev) if (chip->pdata && chip->pdata->platform_power) { pm_message_t pmm = {PM_EVENT_SUSPEND}; + chip->pdata->platform_power(dev, pmm); } @@ -1978,6 +1979,7 @@ static int tsl2x7x_resume(struct device *dev) if (chip->pdata && chip->pdata->platform_power) { pm_message_t pmm = {PM_EVENT_RESUME}; + chip->pdata->platform_power(dev, pmm); } |