diff options
author | Simon Boulay <simon.boulay@alkeona.net> | 2014-06-01 16:57:44 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-06-01 16:46:57 -0700 |
commit | aeb49155dbc5a9404b1cdcd087132ef959bf666d (patch) | |
tree | 94189db7be30b120271a3942bd9d8b835d680036 /drivers/staging | |
parent | f4d90513c83d8d8e2e33f88c1ccba1db2dc31e72 (diff) |
staging/mt29f_spinand: coding style fixes
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>
Diffstat (limited to 'drivers/staging')
-rw-r--r-- | drivers/staging/mt29f_spinand/mt29f_spinand.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/staging/mt29f_spinand/mt29f_spinand.c b/drivers/staging/mt29f_spinand/mt29f_spinand.c index 5a40925680ac..3464e0c521e6 100644 --- a/drivers/staging/mt29f_spinand/mt29f_spinand.c +++ b/drivers/staging/mt29f_spinand/mt29f_spinand.c @@ -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; } |