]> xenbits.xensource.com Git - xen.git/commitdiff
libxl/arm: Fix the function name in error log
authorShannon Zhao <shannon.zhao@linaro.org>
Tue, 31 May 2016 05:02:53 +0000 (13:02 +0800)
committerWei Liu <wei.liu2@citrix.com>
Fri, 17 Jun 2016 10:46:21 +0000 (11:46 +0100)
It should be xc_dom_devicetree_mem instead of xc_dom_devicetree_file.

Signed-off-by: Shannon Zhao <shannon.zhao@linaro.org>
Acked-by: Wei Liu <wei.liu2@citrix.com>
tools/libxl/libxl_arm.c

index 1195b37fc1ed50d88ee6b949ed1ed8ca4c067b55..c6d77e3f90303dd90721f8d6c00ca08e82ecd4d9 100644 (file)
@@ -872,7 +872,7 @@ next_resize:
 
     res = xc_dom_devicetree_mem(dom, fdt, fdt_totalsize(fdt));
     if (res) {
-        LOGE(ERROR, "xc_dom_devicetree_file failed");
+        LOGE(ERROR, "xc_dom_devicetree_mem failed");
         rc = ERROR_FAIL;
         goto out;
     }