Commit ab57d96704464f2d42a62a03b9267bf6fe597c0e

Authored by aliguori
1 parent 2569da0c

LSI53C895A: Rename dmbs register to dbms (Ryan Harper)

Register name should be: Dynamic Block Move Selector (dbms) according to page
 215 of the LSI 53C895A Technical Manual[1].

 1. http://www.lsi.com/DistributionSystem/AssetDocument/files/docs/techdocs/storage_stand_prod/SCSIControllers/lsi53c895a_tech_manual.pdf

Signed-off-by: Ryan Harper <ryanh@us.ibm.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>



git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5968 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 4 additions and 4 deletions
hw/lsi53c895a.c
... ... @@ -251,7 +251,7 @@ typedef struct {
251 251 uint32_t sfs;
252 252 uint32_t drs;
253 253 uint32_t sbms;
254   - uint32_t dmbs;
  254 + uint32_t dbms;
255 255 uint32_t dnad64;
256 256 uint32_t pmjad1;
257 257 uint32_t pmjad2;
... ... @@ -320,7 +320,7 @@ static void lsi_soft_reset(LSIState *s)
320 320 s->sfs = 0;
321 321 s->drs = 0;
322 322 s->sbms = 0;
323   - s->dmbs = 0;
  323 + s->dbms = 0;
324 324 s->dnad64 = 0;
325 325 s->pmjad1 = 0;
326 326 s->pmjad2 = 0;
... ... @@ -1401,7 +1401,7 @@ static uint8_t lsi_reg_readb(LSIState *s, int offset)
1401 1401 CASE_GET_REG32(sfs, 0xa8)
1402 1402 CASE_GET_REG32(drs, 0xac)
1403 1403 CASE_GET_REG32(sbms, 0xb0)
1404   - CASE_GET_REG32(dmbs, 0xb4)
  1404 + CASE_GET_REG32(dbms, 0xb4)
1405 1405 CASE_GET_REG32(dnad64, 0xb8)
1406 1406 CASE_GET_REG32(pmjad1, 0xc0)
1407 1407 CASE_GET_REG32(pmjad2, 0xc4)
... ... @@ -1618,7 +1618,7 @@ static void lsi_reg_writeb(LSIState *s, int offset, uint8_t val)
1618 1618 CASE_SET_REG32(sfs, 0xa8)
1619 1619 CASE_SET_REG32(drs, 0xac)
1620 1620 CASE_SET_REG32(sbms, 0xb0)
1621   - CASE_SET_REG32(dmbs, 0xb4)
  1621 + CASE_SET_REG32(dbms, 0xb4)
1622 1622 CASE_SET_REG32(dnad64, 0xb8)
1623 1623 CASE_SET_REG32(pmjad1, 0xc0)
1624 1624 CASE_SET_REG32(pmjad2, 0xc4)
... ...