diff options
author | malc | 2009-10-01 20:20:47 +0200 |
---|---|---|
committer | malc | 2009-10-01 20:45:02 +0200 |
commit | 99a0949b720a0936da2052cb9a46db04ffc6db29 (patch) | |
tree | f9e39633853e35b49fc4465337cc196b9650866e /target-alpha/cpu.h | |
parent | Include microblaze binaries in tarbin. (diff) | |
download | qemu-99a0949b720a0936da2052cb9a46db04ffc6db29.tar.gz qemu-99a0949b720a0936da2052cb9a46db04ffc6db29.tar.xz qemu-99a0949b720a0936da2052cb9a46db04ffc6db29.zip |
Get rid of _t suffix
Some not so obvious bits, slirp and Xen were left alone for the time
being.
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'target-alpha/cpu.h')
-rw-r--r-- | target-alpha/cpu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target-alpha/cpu.h b/target-alpha/cpu.h index ca9dfe2458..4cc1f5eba8 100644 --- a/target-alpha/cpu.h +++ b/target-alpha/cpu.h @@ -260,8 +260,8 @@ enum { typedef struct CPUAlphaState CPUAlphaState; -typedef struct pal_handler_t pal_handler_t; -struct pal_handler_t { +typedef struct pal_handler a_pal_handler; +struct pal_handler { /* Reset */ void (*reset)(CPUAlphaState *env); /* Uncorrectable hardware error */ @@ -323,7 +323,7 @@ struct CPUAlphaState { uint32_t features; uint32_t amask; int implver; - pal_handler_t *pal_handler; + a_pal_handler *pal_handler; }; #define cpu_init cpu_alpha_init |