summaryrefslogtreecommitdiffstats
path: root/drivers/mfd/cros_ec.c
diff options
context:
space:
mode:
authorBill Richardson2014-06-18 20:14:03 +0200
committerLee Jones2014-07-09 15:58:18 +0200
commit533cec8f34778de10412dfabac991cf458ebf3c9 (patch)
treedd08a5262f40270b94ac1ecb390d59cc6729e3c9 /drivers/mfd/cros_ec.c
parentmfd: cros_ec: Use struct cros_ec_command to communicate with the EC (diff)
downloadkernel-qcow2-linux-533cec8f34778de10412dfabac991cf458ebf3c9.tar.gz
kernel-qcow2-linux-533cec8f34778de10412dfabac991cf458ebf3c9.tar.xz
kernel-qcow2-linux-533cec8f34778de10412dfabac991cf458ebf3c9.zip
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.c')
-rw-r--r--drivers/mfd/cros_ec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/cros_ec.c b/drivers/mfd/cros_ec.c
index 2e86c282f0b4..49ed8c340868 100644
--- a/drivers/mfd/cros_ec.c
+++ b/drivers/mfd/cros_ec.c
@@ -140,7 +140,7 @@ int cros_ec_register(struct cros_ec_device *ec_dev)
goto fail_mfd;
}
- dev_info(dev, "Chrome EC (%s)\n", ec_dev->name);
+ dev_info(dev, "Chrome EC device registered\n");
return 0;