Skip to content
Snippets Groups Projects
Commit 0402d003 authored by Simon Glass's avatar Simon Glass
Browse files

sandbox: pmic: Convert pmic emulator to support livetree


Update this driver to support a live device tree.

Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
parent 7a869e6c
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
*/ */
#include <common.h> #include <common.h>
#include <fdtdec.h>
#include <errno.h> #include <errno.h>
#include <dm.h> #include <dm.h>
#include <i2c.h> #include <i2c.h>
...@@ -108,9 +107,8 @@ static int sandbox_i2c_pmic_ofdata_to_platdata(struct udevice *emul) ...@@ -108,9 +107,8 @@ static int sandbox_i2c_pmic_ofdata_to_platdata(struct udevice *emul)
debug("%s:%d Setting PMIC default registers\n", __func__, __LINE__); debug("%s:%d Setting PMIC default registers\n", __func__, __LINE__);
reg_defaults = fdtdec_locate_byte_array(gd->fdt_blob, reg_defaults = dev_read_u8_array_ptr(emul, "reg-defaults",
dev_of_offset(emul), "reg-defaults", SANDBOX_PMIC_REG_COUNT);
SANDBOX_PMIC_REG_COUNT);
if (!reg_defaults) { if (!reg_defaults) {
error("Property \"reg-defaults\" not found for device: %s!", error("Property \"reg-defaults\" not found for device: %s!",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment