]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging/mt29f_spinand: coding style fixes
authorSimon Boulay <simon.boulay@alkeona.net>
Sun, 1 Jun 2014 14:57:44 +0000 (16:57 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 1 Jun 2014 23:46:57 +0000 (16:46 -0700)
This patch fixes coding style errors reported by checkpatch.pl.
It adds new lines after declarations in two places.

Signed-off-by: Simon Boulay <simon.boulay@alkeona.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/mt29f_spinand/mt29f_spinand.c

index 5a40925680ac28c94e793054e3bfb8cbf52e12a3..3464e0c521e603ff73389c04729dc4f45f31da75 100644 (file)
@@ -699,6 +699,7 @@ static void spinand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
 {
 
        struct spinand_state *state = mtd_to_state(mtd);
+
        memcpy(state->buf + state->buf_ptr, buf, len);
        state->buf_ptr += len;
 }
@@ -706,6 +707,7 @@ static void spinand_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len)
 static void spinand_read_buf(struct mtd_info *mtd, uint8_t *buf, int len)
 {
        struct spinand_state *state = mtd_to_state(mtd);
+
        memcpy(buf, state->buf + state->buf_ptr, len);
        state->buf_ptr += len;
 }