hw/sparc64/niagara: Use blk_name() instead of open-coding it

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-Id: <20221221133551.3967339-3-armbru@redhat.com>
master
Markus Armbruster 2022-12-21 14:35:50 +01:00
parent e2c1c34f13
commit 1881f336a3
1 changed files with 2 additions and 4 deletions

View File

@ -23,7 +23,6 @@
*/
#include "qemu/osdep.h"
#include "block/block_int-common.h"
#include "qemu/units.h"
#include "cpu.h"
#include "hw/boards.h"
@ -144,10 +143,9 @@ static void niagara_init(MachineState *machine)
memory_region_add_subregion(get_system_memory(),
NIAGARA_VDISK_BASE, &s->vdisk_ram);
dinfo->is_default = 1;
rom_add_file_fixed(blk_bs(blk)->filename, NIAGARA_VDISK_BASE, -1);
rom_add_file_fixed(blk_name(blk), NIAGARA_VDISK_BASE, -1);
} else {
error_report("could not load ram disk '%s'",
blk_bs(blk)->filename);
error_report("could not load ram disk '%s'", blk_name(blk));
exit(1);
}
}