Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6f467e5f authored by Will Sheppard's avatar Will Sheppard Committed by Lee Jones
Browse files

mfd: arizona-spi: Add lines after declarations - checkpatch catch



This was found whilst running checkpatch.pl on arizona-spi.

WARNING: Missing a blank line after declarations
+       struct arizona *arizona = spi_get_drvdata(spi);
+       arizona_dev_exit(arizona);

Signed-off-by: default avatarWill Sheppard <wsheppard@embedded-bits.co.uk>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 6cbac553
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -75,7 +75,9 @@ static int arizona_spi_probe(struct spi_device *spi)
static int arizona_spi_remove(struct spi_device *spi)
{
	struct arizona *arizona = spi_get_drvdata(spi);

	arizona_dev_exit(arizona);

	return 0;
}