mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
misc: Fix some typos in names and comments
Most typos were found using a modified version of codespell: accross -> across issueing -> issuing TICNT_THRESHHOLD -> TICNT_THRESHOLD bandwith -> bandwidth VCARD_7816_PROPIETARY -> VCARD_7816_PROPRIETARY occured -> occurred gaurantee -> guarantee sofware -> software Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
efcb7e4529
commit
4c293dc6e4
8 changed files with 15 additions and 15 deletions
|
@ -67,7 +67,7 @@
|
|||
#define CURTICNT 0x0090
|
||||
|
||||
#define TICK_TIMER_ENABLE 0x0100
|
||||
#define TICNT_THRESHHOLD 2
|
||||
#define TICNT_THRESHOLD 2
|
||||
|
||||
|
||||
#define RTC_ENABLE 0x0001
|
||||
|
@ -429,7 +429,7 @@ static void exynos4210_rtc_write(void *opaque, hwaddr offset,
|
|||
s->reg_rtccon = value;
|
||||
break;
|
||||
case TICCNT:
|
||||
if (value > TICNT_THRESHHOLD) {
|
||||
if (value > TICNT_THRESHOLD) {
|
||||
s->reg_ticcnt = value;
|
||||
} else {
|
||||
fprintf(stderr,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue