spi-nor: intel-spi: Remove unused preopcodes field
authorMika Westerberg <mika.westerberg@linux.intel.com>
Thu, 4 Jan 2018 09:07:44 +0000 (12:07 +0300)
committerCyrille Pitchen <cyrille.pitchen@wedev4u.fr>
Sun, 7 Jan 2018 20:22:32 +0000 (21:22 +0100)
This field is not used in the driver anymore so remove it.

Signed-off-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Signed-off-by: Cyrille Pitchen <cyrille.pitchen@wedev4u.fr>
drivers/mtd/spi-nor/intel-spi.c

index ef034d8..6999515 100644 (file)
  * @erase_64k: 64k erase supported
  * @opcodes: Opcodes which are supported. This are programmed by BIOS
  *           before it locks down the controller.
- * @preopcodes: Preopcodes which are supported.
  */
 struct intel_spi {
        struct device *dev;
@@ -155,7 +154,6 @@ struct intel_spi {
        bool swseq_erase;
        bool erase_64k;
        u8 opcodes[8];
-       u8 preopcodes[2];
 };
 
 static bool writeable;
@@ -400,10 +398,6 @@ static int intel_spi_init(struct intel_spi *ispi)
                                ispi->opcodes[i] = opmenu0 >> i * 8;
                                ispi->opcodes[i + 4] = opmenu1 >> i * 8;
                        }
-
-                       val = readl(ispi->sregs + PREOP_OPTYPE);
-                       ispi->preopcodes[0] = val;
-                       ispi->preopcodes[1] = val >> 8;
                }
        }