[U-Boot] [PATCH] pmic: palmas: Accommodate fdt_subnode_offset signature change

Accommodate fdt_subnode_offset signature change.
Signed-off-by: Keerthy j-keerthy@ti.com --- drivers/power/pmic/palmas.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/power/pmic/palmas.c b/drivers/power/pmic/palmas.c index 6c79a93..0ab425e 100644 --- a/drivers/power/pmic/palmas.c +++ b/drivers/power/pmic/palmas.c @@ -52,7 +52,7 @@ static int palmas_bind(struct udevice *dev) int node = dev->of_offset; int subnode, len;
- fdt_for_each_subnode(blob, subnode, node) { + fdt_for_each_subnode(subnode, blob, node) { const char *name; char *temp;

On 13 October 2016 at 05:57, Keerthy j-keerthy@ti.com wrote:
Accommodate fdt_subnode_offset signature change.
Signed-off-by: Keerthy j-keerthy@ti.com
drivers/power/pmic/palmas.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Acked-by: Simon Glass sjg@chromium.org

On Thursday 13 October 2016 06:22 PM, Simon Glass wrote:
On 13 October 2016 at 05:57, Keerthy j-keerthy@ti.com wrote:
Accommodate fdt_subnode_offset signature change.
Signed-off-by: Keerthy j-keerthy@ti.com
drivers/power/pmic/palmas.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
Acked-by: Simon Glass sjg@chromium.org
Thanks just noticed that $Subject also needs to reflect the right function name. Sending a v2 with that changed and your Ack.
participants (3)
-
Keerthy
-
Keerthy
-
Simon Glass