mirror of https://gitee.com/openkylin/qemu.git
ide: Use some already defined page macros instead of constants
Some PAGE constants were used instead of the macros we already have defined in internal.h. Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
b8f6ba0d0c
commit
a70089ceeb
|
@ -1250,7 +1250,7 @@ static void ide_atapi_cmd(IDEState *s)
|
||||||
switch(action) {
|
switch(action) {
|
||||||
case 0: /* current values */
|
case 0: /* current values */
|
||||||
switch(code) {
|
switch(code) {
|
||||||
case 0x01: /* error recovery */
|
case GPMODE_R_W_ERROR_PAGE: /* error recovery */
|
||||||
cpu_to_ube16(&buf[0], 16 + 6);
|
cpu_to_ube16(&buf[0], 16 + 6);
|
||||||
buf[2] = 0x70;
|
buf[2] = 0x70;
|
||||||
buf[3] = 0;
|
buf[3] = 0;
|
||||||
|
@ -1269,7 +1269,7 @@ static void ide_atapi_cmd(IDEState *s)
|
||||||
buf[15] = 0x00;
|
buf[15] = 0x00;
|
||||||
ide_atapi_cmd_reply(s, 16, max_len);
|
ide_atapi_cmd_reply(s, 16, max_len);
|
||||||
break;
|
break;
|
||||||
case 0x2a:
|
case GPMODE_CAPABILITIES_PAGE:
|
||||||
cpu_to_ube16(&buf[0], 28 + 6);
|
cpu_to_ube16(&buf[0], 28 + 6);
|
||||||
buf[2] = 0x70;
|
buf[2] = 0x70;
|
||||||
buf[3] = 0;
|
buf[3] = 0;
|
||||||
|
|
Loading…
Reference in New Issue