diff options
author | Bill Richardson <wfrichar@chromium.org> | 2014-06-18 14:14:03 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-07-09 09:58:18 -0400 |
commit | 533cec8f34778de10412dfabac991cf458ebf3c9 (patch) | |
tree | dd08a5262f40270b94ac1ecb390d59cc6729e3c9 /drivers/mfd/cros_ec_spi.c | |
parent | 5d4773e27e8ab37491767a6ef99ffd7100fe6341 (diff) |
mfd: cros_ec: cleanup: remove unused fields from struct cros_ec_device
struct cros_ec_device has a superfluous "name" field. We can get all the
debugging info we need from the existing ec_name and phys_name fields, so
let's take out the extra field.
The printout also has sufficient info in it without explicitly adding
the transport. Before this change:
cros-ec-spi spi2.0: Chrome EC (SPI)
After this change:
cros-ec-spi spi2.0: Chrome EC device registered
Signed-off-by: Bill Richardson <wfrichar@chromium.org>
Signed-off-by: Doug Anderson <dianders@chromium.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/cros_ec_spi.c')
-rw-r--r-- | drivers/mfd/cros_ec_spi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mfd/cros_ec_spi.c b/drivers/mfd/cros_ec_spi.c index bef7735ecfde..6e929b5f3bd3 100644 --- a/drivers/mfd/cros_ec_spi.c +++ b/drivers/mfd/cros_ec_spi.c | |||
@@ -370,7 +370,6 @@ static int cros_ec_spi_probe(struct spi_device *spi) | |||
370 | cros_ec_spi_dt_probe(ec_spi, dev); | 370 | cros_ec_spi_dt_probe(ec_spi, dev); |
371 | 371 | ||
372 | spi_set_drvdata(spi, ec_dev); | 372 | spi_set_drvdata(spi, ec_dev); |
373 | ec_dev->name = "SPI"; | ||
374 | ec_dev->dev = dev; | 373 | ec_dev->dev = dev; |
375 | ec_dev->priv = ec_spi; | 374 | ec_dev->priv = ec_spi; |
376 | ec_dev->irq = spi->irq; | 375 | ec_dev->irq = spi->irq; |