diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-02-01 17:24:11 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-02-01 17:24:11 +0000 |
commit | 56bf1d37a05b6c6f9f01ddceeb154130710158e4 (patch) | |
tree | 4e282dcdbf10655658c10675f8d82f3e7f2eaa4d /hw | |
parent | c92b2e845f0669c71081f0f637191d553f9f3499 (diff) |
SEEK_STAT bit ata reset fix (Jens Axboe)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@592 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw')
-rw-r--r-- | hw/ide.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1284,7 +1284,7 @@ static void ide_cmd_write(CPUState *env, uint32_t addr, uint32_t val) if (s->is_cdrom) s->status = 0x00; /* NOTE: READY is _not_ set */ else - s->status = READY_STAT; + s->status = READY_STAT | SEEK_STAT; ide_set_signature(s); } } |