mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-10 11:04:58 -06:00
hw: move private headers to hw/ subdirectories.
Many headers are used only in a single directory. These can be kept in hw/. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
8d8b636d28
commit
47b43a1f41
141 changed files with 169 additions and 169 deletions
|
@ -29,7 +29,7 @@
|
|||
#include "hw/cris/etraxfs.h"
|
||||
#include "hw/loader.h"
|
||||
#include "elf.h"
|
||||
#include "hw/cris-boot.h"
|
||||
#include "boot.h"
|
||||
#include "sysemu/blockdev.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include "hw/hw.h"
|
||||
#include "hw/loader.h"
|
||||
#include "elf.h"
|
||||
#include "hw/cris-boot.h"
|
||||
#include "boot.h"
|
||||
|
||||
static void main_cpu_reset(void *opaque)
|
||||
{
|
||||
|
|
15
hw/cris/boot.h
Normal file
15
hw/cris/boot.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#ifndef _CRIS_BOOT_H
|
||||
#define HW_CRIS_BOOT_H 1
|
||||
|
||||
struct cris_load_info
|
||||
{
|
||||
const char *image_filename;
|
||||
const char *cmdline;
|
||||
int image_size;
|
||||
|
||||
hwaddr entry;
|
||||
};
|
||||
|
||||
void cris_load_image(CRISCPU *cpu, struct cris_load_info *li);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue