ide: Make it explicit that ide_create_drive() can't fail
commitfa12fbbecefc6f9bf20374daa275a598096d113c
authorMarkus Armbruster <armbru@redhat.com>
Fri, 25 Jun 2010 16:53:22 +0000 (25 18:53 +0200)
committerKevin Wolf <kwolf@redhat.com>
Fri, 2 Jul 2010 11:18:01 +0000 (2 13:18 +0200)
treec0fa0f87f351a01164bdc59e8b59d2ddd5502ce7
parentfa66b909f382619da15f8c7e323145adfa94fdac
ide: Make it explicit that ide_create_drive() can't fail

All callers of ide_create_drive() ignore its value.  Currently
harmless, because it fails only when qdev_init() fails, which fails
only when ide_drive_initfn() fails, which never fails.

Brittle.  Change it to die instead of silently ignoring failure.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
hw/ide/qdev.c