projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0a8e45
)
dm: mmc: intialize dev when probe
author
Peng Fan
<van.freenix@gmail.com>
Thu, 11 Aug 2016 06:02:56 +0000
(14:02 +0800)
committer
Stefano Babic
<sbabic@denx.de>
Tue, 4 Oct 2016 13:41:01 +0000
(15:41 +0200)
Need to initialize mmc->dev when probe, or will met
"dev_get_uclass_priv: null device", when `mmc dev 1`.
Signed-off-by: Peng Fan <peng.fan@nxp.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Simon Glass <sjg@chromium.org>
Cc: Jaehoon Chung <jh80.chung@samsung.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
drivers/mmc/fsl_esdhc.c
patch
|
blob
|
history
diff --git
a/drivers/mmc/fsl_esdhc.c
b/drivers/mmc/fsl_esdhc.c
index 103b32e9cf76e90b5b957c8167575a619f5c60e7..9796d39c65bd00a2cd21b4495815d3c45f20a5e7 100644
(file)
--- a/
drivers/mmc/fsl_esdhc.c
+++ b/
drivers/mmc/fsl_esdhc.c
@@
-1010,6
+1010,7
@@
static int fsl_esdhc_probe(struct udevice *dev)
}
upriv->mmc = priv->mmc;
+ priv->mmc->dev = dev;
return 0;
}