sm501: Drop unneded variable
[qemu/ar7.git] / qapi / error.json
blob3fad08f5060a86df86d82e07b1a1e5294a9bf64a
1 # -*- Mode: Python -*-
3 ##
4 # = QMP errors
5 ##
7 ##
8 # @QapiErrorClass:
10 # QEMU error classes
12 # @GenericError: this is used for errors that don't require a specific error
13 #                class. This should be the default case for most errors
15 # @CommandNotFound: the requested command has not been found
17 # @DeviceNotActive: a device has failed to be become active
19 # @DeviceNotFound: the requested device has not been found
21 # @KVMMissingCap: the requested operation can't be fulfilled because a
22 #                 required KVM capability is missing
24 # Since: 1.2
26 { 'enum': 'QapiErrorClass',
27   # Keep this in sync with ErrorClass in error.h
28   'data': [ 'GenericError', 'CommandNotFound',
29             'DeviceNotActive', 'DeviceNotFound', 'KVMMissingCap' ] }