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:
Paolo Bonzini 2013-03-18 17:36:02 +01:00
parent 8d8b636d28
commit 47b43a1f41
141 changed files with 169 additions and 169 deletions

View file

@ -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"

View file

@ -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
View 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