projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dae3be3
)
mfd: tps65910: Delete an unnecessary variable initialisation in tps65910_sleepinit()
author
Markus Elfring
<elfring@users.sourceforge.net>
Fri, 9 Mar 2018 08:10:09 +0000
(09:10 +0100)
committer
Lee Jones
<lee.jones@linaro.org>
Wed, 16 May 2018 08:21:48 +0000
(09:21 +0100)
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>
drivers/mfd/tps65910.c
patch
|
blob
|
history
diff --git
a/drivers/mfd/tps65910.c
b/drivers/mfd/tps65910.c
index 80ea1474c654a5a30aa6053b5d5e674150daac07..7e7d3d1642c66bee2d31cda3e98fbd7d5962e739 100644
(file)
--- 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;