]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
sf: Remove unneeded SST_BP and SST_WP
authorJagan Teki <jteki@openedev.com>
Wed, 25 Nov 2015 19:33:33 +0000 (01:03 +0530)
committerJagan Teki <jteki@openedev.com>
Fri, 11 Dec 2015 16:42:24 +0000 (22:12 +0530)
SST parts added on sf_params.c supports both SST_WR which consits
of both BP and WP and there is a spi controller ich which supports
only BP so the relevent _write hook set based on "slave->op_mode_tx"
hence there is no respective change required from flash side hance
removed these.

Tested-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Signed-off-by: Jagan Teki <jteki@openedev.com>
drivers/mtd/spi/sf_internal.h

index b8692c6147f30a46c0412cb8f3cf964b9c3b9ebf..16dd45bfc646b81bee04b351a29060eb9e36a19a 100644 (file)
@@ -44,13 +44,10 @@ enum {
 #endif
        SECT_32K        = 1 << 1,
        E_FSR           = 1 << 2,
-       SST_BP          = 1 << 3,
-       SST_WP          = 1 << 4,
-       WR_QPP          = 1 << 5,
+       SST_WR          = 1 << 3,
+       WR_QPP          = 1 << 4,
 };
 
-#define SST_WR         (SST_BP | SST_WP)
-
 enum spi_nor_option_flags {
        SNOR_F_SST_WR           = (1 << 0),
        SNOR_F_USE_FSR          = (1 << 1),