diff options
author | Dong Xu Wang | 2011-11-29 09:52:39 +0100 |
---|---|---|
committer | Stefan Hajnoczi | 2011-12-06 10:56:41 +0100 |
commit | 66a0a2cb81fb9d0e4e372a21cb62c1d0d877b112 (patch) | |
tree | ca94e118ff09a096aed511e5859eb8f5ecaf3844 /hw/fmopl.c | |
parent | fix typo: delete redundant semicolon (diff) | |
download | qemu-66a0a2cb81fb9d0e4e372a21cb62c1d0d877b112.tar.gz qemu-66a0a2cb81fb9d0e4e372a21cb62c1d0d877b112.tar.xz qemu-66a0a2cb81fb9d0e4e372a21cb62c1d0d877b112.zip |
fix spelling in hw sub directory
Correct obvious spelling errors in qemu/hw directory.
Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'hw/fmopl.c')
-rw-r--r-- | hw/fmopl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/hw/fmopl.c b/hw/fmopl.c index 5ad52ab7d2..6198b89ccb 100644 --- a/hw/fmopl.c +++ b/hw/fmopl.c @@ -715,7 +715,7 @@ static void OPLCloseTable( void ) free(VIB_TABLE); } -/* CSM Key Controll */ +/* CSM Key Control */ INLINE void CSMKeyControll(OPL_CH *CH) { OPL_SLOT *slot1 = &CH->SLOT[SLOT1]; @@ -762,7 +762,7 @@ static void OPLWriteReg(FM_OPL *OPL, int r, int v) switch(r&0xe0) { - case 0x00: /* 00-1f:controll */ + case 0x00: /* 00-1f:control */ switch(r&0x1f) { case 0x01: @@ -826,7 +826,7 @@ static void OPLWriteReg(FM_OPL *OPL, int r, int v) LOG(LOG_WAR,("OPL:write unmapped KEYBOARD port\n")); } return; - case 0x07: /* DELTA-T controll : START,REC,MEMDATA,REPT,SPOFF,x,x,RST */ + case 0x07: /* DELTA-T control : START,REC,MEMDATA,REPT,SPOFF,x,x,RST */ if(OPL->type&OPL_TYPE_ADPCM) YM_DELTAT_ADPCM_Write(OPL->deltat,r-0x07,v); return; @@ -1380,7 +1380,7 @@ int OPLTimerOver(FM_OPL *OPL,int c) else { /* Timer A */ OPL_STATUS_SET(OPL,0x40); - /* CSM mode key,TL controll */ + /* CSM mode key,TL control */ if( OPL->mode & 0x80 ) { /* CSM mode total level latch and auto key on */ int ch; |