diff options
author | Markus Armbruster <armbru@redhat.com> | 2011-09-06 18:58:59 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2011-09-12 15:17:22 +0200 |
commit | 7d4b4ba5c2bae99d44f265884b567ae63947bb4a (patch) | |
tree | 656e821d5db201a05fd20e4fd69069e0e79a850f /hw/ide | |
parent | ab359cd17e77163b672c5fc129cf4bcd0a3b38ce (diff) |
block: New change_media_cb() parameter load
To let device models distinguish between eject and load.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'hw/ide')
-rw-r--r-- | hw/ide/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ide/core.c b/hw/ide/core.c index 3771acbd33..5def25c53d 100644 --- a/hw/ide/core.c +++ b/hw/ide/core.c @@ -784,7 +784,7 @@ static void ide_cfata_metadata_write(IDEState *s) } /* called when the inserted state of the media has changed */ -static void ide_cd_change_cb(void *opaque) +static void ide_cd_change_cb(void *opaque, bool load) { IDEState *s = opaque; uint64_t nb_sectors; |