diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-11-16 01:45:27 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-11-16 01:45:27 +0000 |
commit | 46d4767d93bcb2e84869ba6d2344ebff4382be86 (patch) | |
tree | ec07dcd1af4aaab9db64547e0b4cf36558caf772 /block.c | |
parent | e35c55fe38faea68eb9356163f52a426e533d79b (diff) |
better BIOS ATA translation support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1153 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'block.c')
-rw-r--r-- | block.c | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -348,6 +348,11 @@ void bdrv_set_type_hint(BlockDriverState *bs, int type) type == BDRV_TYPE_FLOPPY)); } +void bdrv_set_translation_hint(BlockDriverState *bs, int translation) +{ + bs->translation = translation; +} + void bdrv_get_geometry_hint(BlockDriverState *bs, int *pcyls, int *pheads, int *psecs) { @@ -361,6 +366,11 @@ int bdrv_get_type_hint(BlockDriverState *bs) return bs->type; } +int bdrv_get_translation_hint(BlockDriverState *bs) +{ + return bs->translation; +} + int bdrv_is_removable(BlockDriverState *bs) { return bs->removable; |