From: Markus Armbruster Date: Fri, 19 Feb 2010 18:54:06 +0000 (+0100) Subject: error: New QERR_NO_BUS_FOR_DEVICE X-Git-Tag: v0.13.0-rc0~1079^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fab5767f90c96194f918d39af683fff3d9ea421a;p=thirdparty%2Fqemu.git error: New QERR_NO_BUS_FOR_DEVICE --- diff --git a/qerror.c b/qerror.c index a3692045887..26eb70472e6 100644 --- a/qerror.c +++ b/qerror.c @@ -124,6 +124,10 @@ static const QErrorStringTable qerror_table[] = { .error_fmt = QERR_MISSING_PARAMETER, .desc = "Parameter '%(name)' is missing", }, + { + .error_fmt = QERR_NO_BUS_FOR_DEVICE, + .desc = "No '%(bus)' bus found for device '%(device)'", + }, { .error_fmt = QERR_OPEN_FILE_FAILED, .desc = "Could not open '%(filename)'", diff --git a/qerror.h b/qerror.h index 10a37f3f9bd..88b297a96da 100644 --- a/qerror.h +++ b/qerror.h @@ -105,6 +105,9 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_MISSING_PARAMETER \ "{ 'class': 'MissingParameter', 'data': { 'name': %s } }" +#define QERR_NO_BUS_FOR_DEVICE \ + "{ 'class': 'NoBusForDevice', 'data': { 'device': %s, 'bus': %s } }" + #define QERR_OPEN_FILE_FAILED \ "{ 'class': 'OpenFileFailed', 'data': { 'filename': %s } }"