Skip to content

Commit

Permalink
fdc: fix false FD_SR0_SEEK
Browse files Browse the repository at this point in the history
Do not always set FD_SR0_SEEK, as callers already set it if needed.

Signed-off-by: Hervé Poussineau <hpoussin@reactos.org>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
  • Loading branch information
hpoussin authored and kevmw committed Nov 14, 2012
1 parent d6ed4e2 commit 075f553
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
10 changes: 7 additions & 3 deletions hw/fdc.c
Expand Up @@ -1149,10 +1149,14 @@ static void fdctrl_stop_transfer(FDCtrl *fdctrl, uint8_t status0,
uint8_t status1, uint8_t status2)
{
FDrive *cur_drv;

cur_drv = get_cur_drv(fdctrl);
fdctrl->status0 = status0 | FD_SR0_SEEK | (cur_drv->head << 2) |
GET_CUR_DRV(fdctrl);

fdctrl->status0 &= ~(FD_SR0_DS0 | FD_SR0_DS1 | FD_SR0_HEAD);
fdctrl->status0 |= GET_CUR_DRV(fdctrl);
if (cur_drv->head) {
fdctrl->status0 |= FD_SR0_HEAD;
}
fdctrl->status0 |= status0;

FLOPPY_DPRINTF("transfer status: %02x %02x %02x (%02x)\n",
status0, status1, status2, fdctrl->status0);
Expand Down
6 changes: 3 additions & 3 deletions tests/fdc-test.c
Expand Up @@ -154,7 +154,7 @@ static uint8_t send_read_command(void)
}

st0 = floppy_recv();
if (st0 != 0x60) {
if (st0 != 0x40) {
ret = 1;
}

Expand Down Expand Up @@ -398,7 +398,7 @@ static void test_read_no_dma_1(void)

outb(FLOPPY_BASE + reg_dor, inb(FLOPPY_BASE + reg_dor) & ~0x08);
send_seek(0);
ret = send_read_no_dma_command(1, 0x24); /* FIXME: should be 0x04 */
ret = send_read_no_dma_command(1, 0x04);
g_assert(ret == 0);
}

Expand All @@ -408,7 +408,7 @@ static void test_read_no_dma_18(void)

outb(FLOPPY_BASE + reg_dor, inb(FLOPPY_BASE + reg_dor) & ~0x08);
send_seek(0);
ret = send_read_no_dma_command(18, 0x24); /* FIXME: should be 0x04 */
ret = send_read_no_dma_command(18, 0x04);
g_assert(ret == 0);
}

Expand Down

0 comments on commit 075f553

Please sign in to comment.