rockchip: rk8xx: allocate priv structure for driver
authorKever Yang <kever.yang@rock-chips.com>
Fri, 5 May 2017 06:50:56 +0000 (14:50 +0800)
committerSimon Glass <sjg@chromium.org>
Wed, 7 Jun 2017 12:57:49 +0000 (06:57 -0600)
The rk8xx_priv structure need to allocate for driver, or else
it will cause data abort when CPU access it.

This is a bug fix for below patch set:
https://www.mail-archive.com/u-boot@lists.denx.de/msg247345.html

Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Acked-by: Simon Glass <sjg@chromium.org>
drivers/power/pmic/rk8xx.c

index 09b9b54..eb3ec0f 100644 (file)
@@ -111,6 +111,7 @@ U_BOOT_DRIVER(pmic_rk8xx) = {
 #if CONFIG_IS_ENABLED(PMIC_CHILDREN)
        .bind = rk8xx_bind,
 #endif
+       .priv_auto_alloc_size   = sizeof(struct rk8xx_priv),
        .probe = rk8xx_probe,
        .ops = &rk8xx_ops,
 };