diff options
author | Stefan Weil <sw@weilnetz.de> | 2013-12-01 08:49:47 +0100 |
---|---|---|
committer | Michael Tokarev <mjt@tls.msk.ru> | 2013-12-02 21:03:39 +0400 |
commit | 1246b259f846136d58a89568fdc0421d02e4df65 (patch) | |
tree | 552f4f69b0c605813d82e8dff6765b06ea49c8ca /target-openrisc/cpu.h | |
parent | 47908a0f66c5369a94e93d951a5d0c28d007ff80 (diff) | |
download | qemu-1246b259f846136d58a89568fdc0421d02e4df65.zip |
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-openrisc/cpu.h')
-rw-r--r-- | target-openrisc/cpu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target-openrisc/cpu.h b/target-openrisc/cpu.h index 0f9efdf6de..51d6afd153 100644 --- a/target-openrisc/cpu.h +++ b/target-openrisc/cpu.h @@ -307,7 +307,7 @@ typedef struct CPUOpenRISCState { #ifndef CONFIG_USER_ONLY CPUOpenRISCTLBContext * tlb; - struct QEMUTimer *timer; + QEMUTimer *timer; uint32_t ttmr; /* Timer tick mode register */ uint32_t ttcr; /* Timer tick count register */ |