diff options
author | Andreas Färber <afaerber@suse.de> | 2012-03-14 01:38:23 +0100 |
---|---|---|
committer | Andreas Färber <afaerber@suse.de> | 2012-03-14 22:20:26 +0100 |
commit | fc9bb1769706d4b3ac48e52d4639505bc1ce7392 (patch) | |
tree | 13e33c0cccde04c1ffa3bcfb3030da58a5d752f0 /hw/cris-boot.h | |
parent | 5ae93306826fba021a86355e5d91253c67c736bc (diff) |
cris hw/: Don't use CPUState
Scripted conversion:
for file in hw/cris-boot.[hc] hw/cris_pic_cpu.c hw/axis_dev88.c hw/etraxfs.h hw/etraxfs_ser.c; do
sed -i "s/CPUState/CPUCRISState/g" $file
done
Signed-off-by: Andreas Färber <afaerber@suse.de>
Acked-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'hw/cris-boot.h')
-rw-r--r-- | hw/cris-boot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/cris-boot.h b/hw/cris-boot.h index e9caf8dee8..ecb9779e49 100644 --- a/hw/cris-boot.h +++ b/hw/cris-boot.h @@ -8,4 +8,4 @@ struct cris_load_info target_phys_addr_t entry; }; -void cris_load_image(CPUState *env, struct cris_load_info *li); +void cris_load_image(CPUCRISState *env, struct cris_load_info *li); |