On (Wed) Nov 18 2009 [16:17:02], Markus Armbruster wrote:
> Luiz Capitulino <lcapitul...@redhat.com> writes:
>
> > @@ -176,8 +177,7 @@ DeviceState *qdev_device_add(QemuOpts *opts)
> > /* find driver */
> > info = qdev_find_info(NULL, driver);
> > if (!info) {
> > - qemu_error("Device \"%s\" not found. Try -device '?' for a
> > list.\n",
> > - driver);
> > + qemu_error_new(QERR_DEVICE_NOT_FOUND, driver);
> > return NULL;
> > }
> > if (info->no_user) {
>
> Not obvious from this patch, but we lose the "Try -device '?' for a
> list" hint here. In PATCH 7/10:
BTW that hint isn't always appropriate as it's printed on the monitor
when doing 'device_add' as well.
Amit