summaryrefslogtreecommitdiff
path: root/target-alpha
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2013-12-01 08:49:47 +0100
committerMichael Tokarev <mjt@tls.msk.ru>2013-12-02 21:03:39 +0400
commit1246b259f846136d58a89568fdc0421d02e4df65 (patch)
tree552f4f69b0c605813d82e8dff6765b06ea49c8ca /target-alpha
parent47908a0f66c5369a94e93d951a5d0c28d007ff80 (diff)
downloadqemu-1246b259f846136d58a89568fdc0421d02e4df65.tar.gz
misc: Replace 'struct QEMUTimer' by 'QEMUTimer'
Most code already used QEMUTimer without the redundant 'struct' keyword. Signed-off-by: Stefan Weil <sw@weilnetz.de> Reviewed-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'target-alpha')
-rw-r--r--target-alpha/cpu-qom.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-alpha/cpu-qom.h b/target-alpha/cpu-qom.h
index 2ebc9bcacb..198f1b13a3 100644
--- a/target-alpha/cpu-qom.h
+++ b/target-alpha/cpu-qom.h
@@ -62,7 +62,7 @@ typedef struct AlphaCPU {
CPUAlphaState env;
/* This alarm doesn't exist in real hardware; we wish it did. */
- struct QEMUTimer *alarm_timer;
+ QEMUTimer *alarm_timer;
} AlphaCPU;
static inline AlphaCPU *alpha_env_get_cpu(CPUAlphaState *env)