diff options
author | Aleksander Morgado <aleksander@gnu.org> | 2011-09-18 22:20:11 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-15 14:14:20 +0100 |
commit | 963eb873e10dd06b17363a08414c278d5e1ba7b3 (patch) | |
tree | 00fac8bd41e8d1684daf20bc4c24cb3ce0300ab8 /src/mm-plugin-base.h | |
parent | 18238ed50ee626bff10aa9dc86e06223a776c255 (diff) |
plugin-base: new 'allowed-udev-tags' property
The plugins can set this property to filter support check requests by the
availability of a given udev tag in the port. The value given to the property
should be a NULL-terminated array of C strings, e.g.:
const gchar *tags[] = { "ID_MM_X22X_TAGGED", NULL };
Diffstat (limited to 'src/mm-plugin-base.h')
-rw-r--r-- | src/mm-plugin-base.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mm-plugin-base.h b/src/mm-plugin-base.h index 2b9e2f45..82adb643 100644 --- a/src/mm-plugin-base.h +++ b/src/mm-plugin-base.h @@ -131,6 +131,7 @@ typedef struct { #define MM_PLUGIN_BASE_ALLOWED_PRODUCT_IDS "allowed-product-ids" #define MM_PLUGIN_BASE_ALLOWED_VENDOR_STRINGS "allowed-vendor-strings" #define MM_PLUGIN_BASE_ALLOWED_PRODUCT_STRINGS "allowed-product-strings" +#define MM_PLUGIN_BASE_ALLOWED_UDEV_TAGS "allowed-udev-tags" #define MM_PLUGIN_BASE_ALLOWED_QCDM "allowed-qcdm" #define MM_PLUGIN_BASE_CUSTOM_INIT "custom-init" #define MM_PLUGIN_BASE_SEND_DELAY "send-delay" |