From: Simon Glass Date: Fri, 19 May 2017 02:09:59 +0000 (-0600) Subject: dm: sandbox: sysreset: Convert driver to livetree X-Git-Tag: v2017.07-rc1~99 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=03753c9a7bef8436650dbdcfc1f81918765b3fb4;p=oweals%2Fu-boot.git dm: sandbox: sysreset: Convert driver to livetree Update this driver to support a live device tree. Signed-off-by: Simon Glass --- diff --git a/drivers/sysreset/sysreset_sandbox.c b/drivers/sysreset/sysreset_sandbox.c index 0c4e2e1a93..12b3e5f86e 100644 --- a/drivers/sysreset/sysreset_sandbox.c +++ b/drivers/sysreset/sysreset_sandbox.c @@ -41,7 +41,7 @@ static int sandbox_sysreset_request(struct udevice *dev, enum sysreset_t type) * (see the U_BOOT_DEVICE() declaration below) should not do anything. * If we are that device, return an error. */ - if (state->fdt_fname && dev_of_offset(dev) == -1) + if (state->fdt_fname && !dev_of_valid(dev)) return -ENODEV; switch (type) {