mirror of
https://github.com/xemu-project/xemu.git
synced 2024-12-01 07:21:09 +00:00
ppc440_bamboo.c: remove label from bamboo_load_device_tree()
'out' label can be replaced by 'return -1' in all cases. CC: David Gibson <david@gibson.dropbear.id.au> CC: qemu-ppc@nongnu.org Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com> Message-Id: <20200106182425.20312-3-danielhb413@gmail.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
9b6c1da5e9
commit
400431ef48
@ -71,12 +71,12 @@ static int bamboo_load_device_tree(hwaddr addr,
|
|||||||
|
|
||||||
filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, BINARY_DEVICE_TREE_FILE);
|
filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, BINARY_DEVICE_TREE_FILE);
|
||||||
if (!filename) {
|
if (!filename) {
|
||||||
goto out;
|
return -1;
|
||||||
}
|
}
|
||||||
fdt = load_device_tree(filename, &fdt_size);
|
fdt = load_device_tree(filename, &fdt_size);
|
||||||
g_free(filename);
|
g_free(filename);
|
||||||
if (fdt == NULL) {
|
if (fdt == NULL) {
|
||||||
goto out;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Manipulate device tree in memory. */
|
/* Manipulate device tree in memory. */
|
||||||
@ -117,10 +117,6 @@ static int bamboo_load_device_tree(hwaddr addr,
|
|||||||
rom_add_blob_fixed(BINARY_DEVICE_TREE_FILE, fdt, fdt_size, addr);
|
rom_add_blob_fixed(BINARY_DEVICE_TREE_FILE, fdt, fdt_size, addr);
|
||||||
g_free(fdt);
|
g_free(fdt);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
out:
|
|
||||||
|
|
||||||
return ret;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Create reset TLB entries for BookE, spanning the 32bit addr space. */
|
/* Create reset TLB entries for BookE, spanning the 32bit addr space. */
|
||||||
|
Loading…
Reference in New Issue
Block a user