diff options
author | Brian Norris <computersforpeace@gmail.com> | 2015-10-30 12:56:22 -0700 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2015-11-16 15:12:30 -0800 |
commit | 20625dfe0384676e3ee244091c4f09544d080798 (patch) | |
tree | 461884800e67d47f10e4bf3254dcbcc2c1f4184e /drivers/mtd/spi-nor | |
parent | 2b2462d5928379b8f43ffe19d72d069bfb89d316 (diff) | |
download | blackbird-op-linux-20625dfe0384676e3ee244091c4f09544d080798.tar.gz blackbird-op-linux-20625dfe0384676e3ee244091c4f09544d080798.zip |
mtd: spi-nor: remove unnecessary leading space from dbg print
As Cyrille noted [1], this line is wrong.
[1] http://lists.infradead.org/pipermail/linux-mtd/2015-September/061725.html
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Cc: Cyrille Pitchen <cyrille.pitchen@atmel.com>
Diffstat (limited to 'drivers/mtd/spi-nor')
-rw-r--r-- | drivers/mtd/spi-nor/spi-nor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c index 12041e181630..16c9f5522b8f 100644 --- a/drivers/mtd/spi-nor/spi-nor.c +++ b/drivers/mtd/spi-nor/spi-nor.c @@ -856,7 +856,7 @@ static const struct flash_info *spi_nor_read_id(struct spi_nor *nor) tmp = nor->read_reg(nor, SPINOR_OP_RDID, id, SPI_NOR_MAX_ID_LEN); if (tmp < 0) { - dev_dbg(nor->dev, " error %d reading JEDEC ID\n", tmp); + dev_dbg(nor->dev, "error %d reading JEDEC ID\n", tmp); return ERR_PTR(tmp); } |