diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-11-25 07:27:29 +0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-01-21 12:13:34 +0400 |
commit | e553fa6e17af10b306b4a42dd19fb23b7254d6a1 (patch) | |
tree | 616c7aa9985ba89cd6a190f671c96ee5348fb063 /drivers/mfd/mc13xxx-spi.c | |
parent | 603ab143bd41d07e91afc31e44774d09aab005fa (diff) | |
download | linux-e553fa6e17af10b306b4a42dd19fb23b7254d6a1.tar.xz |
mfd: mc13xxx: Remove unnecessary spi_set_drvdata()
The driver core clears the driver data to NULL after device_release
or on probe failure. Thus, it is not needed to manually clear the
device driver data to NULL.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/mc13xxx-spi.c')
-rw-r--r-- | drivers/mfd/mc13xxx-spi.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mfd/mc13xxx-spi.c b/drivers/mfd/mc13xxx-spi.c index 5f14ef6693c2..cbcc86d9b6e7 100644 --- a/drivers/mfd/mc13xxx-spi.c +++ b/drivers/mfd/mc13xxx-spi.c @@ -149,7 +149,6 @@ static int mc13xxx_spi_probe(struct spi_device *spi) ret = PTR_ERR(mc13xxx->regmap); dev_err(mc13xxx->dev, "Failed to initialize register map: %d\n", ret); - spi_set_drvdata(spi, NULL); return ret; } |