From: Roberta Dobrescu Date: Thu, 25 Sep 2014 17:09:11 +0000 (+0300) Subject: staging: iio: light: Add a blank line after declarations X-Git-Tag: v5.15~17125^2~172 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2bd7e245ea46dac4defdbed873c1cebe6c1e9c80;p=platform%2Fkernel%2Flinux-starfive.git 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 --- diff --git a/drivers/staging/iio/light/tsl2x7x_core.c b/drivers/staging/iio/light/tsl2x7x_core.c index ab338e3..e0d88fa 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); }