diff mbox

[3/9] spi: ep93xx: Fix checkpatch issue

Message ID 002301cfc658$9eb72c60$dc258520$%han@samsung.com (mailing list archive)
State Accepted
Commit 175a3edcfdc4f25c53f265227c4e810ab2de80b5
Headers show

Commit Message

Jingoo Han Sept. 2, 2014, 2:50 a.m. UTC
Fix the following checkpatch warnings.

  WARNING: Missing a blank line after declarations

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
---
 drivers/spi/spi-ep93xx.c | 1 +
 1 file changed, 1 insertion(+)

Comments

Mika Westerberg Sept. 2, 2014, 5:02 a.m. UTC | #1
On Tue, Sep 2, 2014 at 5:50 AM, Jingoo Han <jg1.han@samsung.com> wrote:
> Fix the following checkpatch warnings.
>
>   WARNING: Missing a blank line after declarations
>
> Signed-off-by: Jingoo Han <jg1.han@samsung.com>

Acked-by: Mika Westerberg <mika.westerberg@iki.fi>
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Mark Brown Sept. 2, 2014, 10:47 a.m. UTC | #2
On Tue, Sep 02, 2014 at 11:50:13AM +0900, Jingoo Han wrote:
> Fix the following checkpatch warnings.
> 
>   WARNING: Missing a blank line after declarations

Applied, thanks.
diff mbox

Patch

diff --git a/drivers/spi/spi-ep93xx.c b/drivers/spi/spi-ep93xx.c
index 2f675d32df0e..bf9728773247 100644
--- a/drivers/spi/spi-ep93xx.c
+++ b/drivers/spi/spi-ep93xx.c
@@ -266,6 +266,7 @@  static int ep93xx_spi_setup(struct spi_device *spi)
 
 		if (chip->ops && chip->ops->setup) {
 			int ret = chip->ops->setup(spi);
+
 			if (ret) {
 				kfree(chip);
 				return ret;