From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Wood Date: Mon, 18 Jan 2016 16:30:12 -0600 Subject: [U-Boot] [PATCH 7/9] ARM: ARMv7: PSCI: Add PSCI 1.0 version support In-Reply-To: <1453091251-17433-8-git-send-email-dongsheng.wang@nxp.com> References: <1453091251-17433-1-git-send-email-dongsheng.wang@nxp.com> <1453091251-17433-8-git-send-email-dongsheng.wang@nxp.com> Message-ID: <1453156212.19133.55.camel@buserror.net> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Mon, 2016-01-18 at 12:27 +0800, Dongsheng Wang wrote: > + > +#ifdef CONFIG_ARMV7_PSCI_GTE_1_0 > + tmp = fdt_psci_gte_1_0_fixup(fdt, nodeoff); > if (tmp) > return tmp; > - tmp = fdt_setprop_u32(fdt, nodeoff, "migrate", PSCI_FN_MIGRATE); > +#endif > + tmp = fdt_psci_0_1_fixup(fdt, nodeoff); The "gte" is needless verbosity and is inconsistent with "fdt_psci_0_1_fixup" which lacks it. -Scott