diff options
author | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-06-02 00:52:09 +0200 |
---|---|---|
committer | Jonathan Aillet <jonathan.aillet@iot.bzh> | 2018-06-06 16:50:12 +0000 |
commit | a79fdcf92f9f94bdaed68dd57091e4e8fb665e18 (patch) | |
tree | 5270dad68367021cec4e49bacf6042c35422ee15 /alsa-binding/Alsa-ApiHat.h | |
parent | ee41b0386fae5d4d753313d6e4cae1f07ba18138 (diff) |
Add an option to 'infoget' verb
Add a new way to get card info when using 'infoget' verb :
When the request contains a section 'devpath', the path specified
will be used to search for the device.
Bug-AGL: SPEC-1405
Change-Id: Idc99a27229f0db3484f62f8f761b7e0daee13a3c
Signed-off-by: Jonathan Aillet <jonathan.aillet@iot.bzh>
Diffstat (limited to 'alsa-binding/Alsa-ApiHat.h')
-rw-r--r-- | alsa-binding/Alsa-ApiHat.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/alsa-binding/Alsa-ApiHat.h b/alsa-binding/Alsa-ApiHat.h index 97517f3..f5feacd 100644 --- a/alsa-binding/Alsa-ApiHat.h +++ b/alsa-binding/Alsa-ApiHat.h @@ -50,6 +50,11 @@ typedef enum { } queryModeE; typedef enum { + INFO_BY_DEVID, + INFO_BY_PATH +} InfoGetT; + +typedef enum { ACTION_SET, ACTION_GET } ActionSetGetT; |