Commit 6f467e5f0cdc3c0304bfcabcbaf56970ddea3d52

Authored by Will Sheppard
Committed by Lee Jones
1 parent 6cbac55368

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: Will Sheppard <wsheppard@embedded-bits.co.uk>
Signed-off-by: Lee Jones <lee.jones@linaro.org>

Showing 1 changed file with 2 additions and 0 deletions Side-by-side Diff

drivers/mfd/arizona-spi.c
... ... @@ -75,7 +75,9 @@
75 75 static int arizona_spi_remove(struct spi_device *spi)
76 76 {
77 77 struct arizona *arizona = spi_get_drvdata(spi);
  78 +
78 79 arizona_dev_exit(arizona);
  80 +
79 81 return 0;
80 82 }
81 83