summaryrefslogtreecommitdiff
path: root/drivers/mtd/spi/sst.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2011-04-23 23:05:55 +0000
committerWolfgang Denk <wd@denx.de>2011-07-26 16:28:21 +0200
commit2744a4e688851fc3b5e2937bf047100c85daeb43 (patch)
tree23b2d7598a0601ed7097883cc71a14b58d9bb1ae /drivers/mtd/spi/sst.c
parentd8e392d95f20cb21767b99d92a9a7f852b0fec63 (diff)
downloadu-boot-imx-2744a4e688851fc3b5e2937bf047100c85daeb43.zip
u-boot-imx-2744a4e688851fc3b5e2937bf047100c85daeb43.tar.gz
u-boot-imx-2744a4e688851fc3b5e2937bf047100c85daeb43.tar.bz2
sf: unify write enable commands
Every spi flash uses the same write enable command, so unify this in the common code. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'drivers/mtd/spi/sst.c')
-rw-r--r--drivers/mtd/spi/sst.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/spi/sst.c b/drivers/mtd/spi/sst.c
index 4dc2db2..6691c1d 100644
--- a/drivers/mtd/spi/sst.c
+++ b/drivers/mtd/spi/sst.c
@@ -96,7 +96,7 @@ static const struct sst_spi_flash_params sst_spi_flash_table[] = {
static int
sst_enable_writing(struct spi_flash *flash)
{
- int ret = spi_flash_cmd(flash->spi, CMD_SST_WREN, NULL, 0);
+ int ret = spi_flash_cmd_write_enable(flash);
if (ret)
debug("SF: Enabling Write failed\n");
return ret;