From 2bd7e245ea46dac4defdbed873c1cebe6c1e9c80 Mon Sep 17 00:00:00 2001 From: Roberta Dobrescu Date: Thu, 25 Sep 2014 20:09:11 +0300 Subject: [PATCH] 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 Acked-by: Daniel Baluta Signed-off-by: Greg Kroah-Hartman --- drivers/staging/iio/light/tsl2x7x_core.c | 2 ++ 1 file changed, 2 insertions(+) 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); } -- 2.39.5