diff options
author | Jagan Teki <jteki@openedev.com> | 2015-08-19 15:26:44 +0530 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2015-09-11 16:04:55 -0700 |
commit | f9f3ce835ddce3c669eee869253105f88819888b (patch) | |
tree | 583437baa5ae4515d6717b408a8b1249c0dba6b4 /drivers/mtd/devices | |
parent | fd7252346b2b005ea5c5f1b432a63dbb9bb05768 (diff) | |
download | linux-f9f3ce835ddce3c669eee869253105f88819888b.tar.bz2 |
mtd: spi-nor: Zap unneeded write_enable from write_reg
The 'write_enable' argument is unused and unneeded, so remove it from
the API.
Signed-off-by: Jagan Teki <jteki@openedev.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Han Xu <han.xu@freescale.com>
[Brian: fixed for nxp-spifi.c]
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/devices')
-rw-r--r-- | drivers/mtd/devices/m25p80.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c index 05bf0d71abea..4b5d7a4655fd 100644 --- a/drivers/mtd/devices/m25p80.c +++ b/drivers/mtd/devices/m25p80.c @@ -61,8 +61,7 @@ static int m25p_cmdsz(struct spi_nor *nor) return 1 + nor->addr_width; } -static int m25p80_write_reg(struct spi_nor *nor, u8 opcode, u8 *buf, int len, - int wr_en) +static int m25p80_write_reg(struct spi_nor *nor, u8 opcode, u8 *buf, int len) { struct m25p *flash = nor->priv; struct spi_device *spi = flash->spi; |