]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
spi-nor: Remove spi_nor::read_id operation
authorBen Hutchings <ben@decadent.org.uk>
Tue, 30 Sep 2014 02:15:04 +0000 (03:15 +0100)
committerBrian Norris <computersforpeace@gmail.com>
Wed, 22 Oct 2014 05:29:10 +0000 (22:29 -0700)
There is currently no useful way to override the default
implementation of this operation.  The returned struct spi_device_id
must have a pointer to struct flash_info in its private data, but this
structure is defined inside spi-nor.

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
drivers/mtd/spi-nor/spi-nor.c
include/linux/mtd/spi-nor.h

index c51ee52386a71d9166dd178d57663f8da4636bfd..a98c134e51b67288491177400b5aeed29a437728 100644 (file)
@@ -904,8 +904,6 @@ static int spi_nor_check(struct spi_nor *nor)
                return -EINVAL;
        }
 
-       if (!nor->read_id)
-               nor->read_id = spi_nor_read_id;
        if (!nor->wait_till_ready)
                nor->wait_till_ready = spi_nor_wait_till_ready;
 
@@ -935,7 +933,7 @@ int spi_nor_scan(struct spi_nor *nor, const char *name, enum read_mode mode)
        if (info->jedec_id) {
                const struct spi_device_id *jid;
 
-               jid = nor->read_id(nor);
+               jid = spi_nor_read_id(nor);
                if (IS_ERR(jid)) {
                        return PTR_ERR(jid);
                } else if (jid != id) {
index 046a0a2e4c4efd41c78bcd38cff00f1030b7f3e2..2f27713b3ae10f7145d4be63c6be6532da3251bd 100644 (file)
@@ -139,8 +139,6 @@ enum spi_nor_ops {
  * @write_xfer:                [OPTIONAL] the writefundamental primitive
  * @read_reg:          [DRIVER-SPECIFIC] read out the register
  * @write_reg:         [DRIVER-SPECIFIC] write data to the register
- * @read_id:           [REPLACEABLE] read out the ID data, and find
- *                     the proper spi_device_id
  * @wait_till_ready:   [REPLACEABLE] wait till the NOR becomes ready
  * @read:              [DRIVER-SPECIFIC] read data from the SPI NOR
  * @write:             [DRIVER-SPECIFIC] write data to the SPI NOR
@@ -172,7 +170,6 @@ struct spi_nor {
        int (*read_reg)(struct spi_nor *nor, u8 opcode, u8 *buf, int len);
        int (*write_reg)(struct spi_nor *nor, u8 opcode, u8 *buf, int len,
                        int write_enable);
-       const struct spi_device_id *(*read_id)(struct spi_nor *nor);
        int (*wait_till_ready)(struct spi_nor *nor);
 
        int (*read)(struct spi_nor *nor, loff_t from,