diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-07-24 13:47:57 +0200 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2024-09-13 20:10:50 +0200 |
| commit | 6006be52656afbf2aa42613b06005ec1138bf1b7 (patch) | |
| tree | 53f315840be191db6f65ff83c463cf42dd10b3ab /hw/cris/boot.h | |
| parent | 3300f714f39a472974ce62feeec8e6fa6b812f88 (diff) | |
| download | focaccia-qemu-6006be52656afbf2aa42613b06005ec1138bf1b7.tar.gz focaccia-qemu-6006be52656afbf2aa42613b06005ec1138bf1b7.zip | |
hw/cris: Remove image loader helper
No more CRIS machine uses cris_load_image(), remove it. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Acked-by: Edgar E. Iglesias <edgar.iglesias@amd.com> Message-ID: <20240904143603.52934-7-philmd@linaro.org>
Diffstat (limited to 'hw/cris/boot.h')
| -rw-r--r-- | hw/cris/boot.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/hw/cris/boot.h b/hw/cris/boot.h deleted file mode 100644 index 9f1e0e340c..0000000000 --- a/hw/cris/boot.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef HW_CRIS_BOOT_H -#define HW_CRIS_BOOT_H - -struct cris_load_info -{ - const char *image_filename; - const char *cmdline; - int image_size; - ram_addr_t ram_size; - - hwaddr entry; -}; - -void cris_load_image(CRISCPU *cpu, struct cris_load_info *li); - -#endif |