diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2018-03-09 09:10:09 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2018-05-16 09:21:48 +0100 |
commit | da257efa8787be2594baf08ed84461d71d6a6d23 (patch) | |
tree | c77009aedb81140c00f96d185026952cc1f898a9 | |
parent | dae3be365537b2da53f355e6dfec0e3a8ea1d425 (diff) |
mfd: tps65910: Delete an unnecessary variable initialisation in tps65910_sleepinit()
The local variable "dev" will be reassigned by a following statement.
Thus omit the explicit initialisation at the beginning.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r-- | drivers/mfd/tps65910.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/tps65910.c b/drivers/mfd/tps65910.c index 80ea1474c654..7e7d3d1642c6 100644 --- a/drivers/mfd/tps65910.c +++ b/drivers/mfd/tps65910.c @@ -312,7 +312,7 @@ static int tps65910_ck32k_init(struct tps65910 *tps65910, static int tps65910_sleepinit(struct tps65910 *tps65910, struct tps65910_board *pmic_pdata) { - struct device *dev = NULL; + struct device *dev; int ret; dev = tps65910->dev; |