net: ks8851: Drop eeprom_size structure member
authorStephen Boyd <stephen.boyd@linaro.org>
Tue, 24 Jan 2017 01:49:20 +0000 (17:49 -0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 24 Jan 2017 19:56:44 +0000 (14:56 -0500)
After commit 51b7b1c34e19 (KSZ8851-SNL: Add ethtool support for
EEPROM via eeprom_93cx6, 2011-11-21) this structure member is
unused. Delete it.

Signed-off-by: Stephen Boyd <stephen.boyd@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/micrel/ks8851.c

index e7e1aff40bd9f2fe676b03ab524de5eaa2a815de..955d69a8e8d37bbd561de10c53ca3fd50b66c8fa 100644 (file)
@@ -84,7 +84,6 @@ union ks8851_tx_hdr {
  * @rc_ier: Cached copy of KS_IER.
  * @rc_ccr: Cached copy of KS_CCR.
  * @rc_rxqcr: Cached copy of KS_RXQCR.
- * @eeprom_size: Companion eeprom size in Bytes, 0 if no eeprom
  * @eeprom: 93CX6 EEPROM state for accessing on-board EEPROM.
  * @vdd_reg:   Optional regulator supplying the chip
  * @vdd_io: Optional digital power supply for IO
@@ -120,7 +119,6 @@ struct ks8851_net {
        u16                     rc_ier;
        u16                     rc_rxqcr;
        u16                     rc_ccr;
-       u16                     eeprom_size;
 
        struct mii_if_info      mii;
        struct ks8851_rxctrl    rxctrl;
@@ -1533,11 +1531,6 @@ static int ks8851_probe(struct spi_device *spi)
        /* cache the contents of the CCR register for EEPROM, etc. */
        ks->rc_ccr = ks8851_rdreg16(ks, KS_CCR);
 
-       if (ks->rc_ccr & CCR_EEPROM)
-               ks->eeprom_size = 128;
-       else
-               ks->eeprom_size = 0;
-
        ks8851_read_selftest(ks);
        ks8851_init_mac(ks);