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-14 16:02:58 +0200 |
commit | 3248ce4154f503f0f63ffda0313caa3a482b4084 (patch) | |
tree | 9ead5b81ff2b27025a7a03f3b0ce6569cea8541e /alsa-binding/Alsa-ApiHat.h | |
parent | 76c6f19a3815553036ff06a51e977a59ccbbf062 (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; |