1
0
Fork 0
mirror of https://github.com/linux-usb-gadgets/libusbgx.git synced 2025-07-20 02:15:06 +03:00

libusbgx: Add interface name for Feature Descriptors

This adds interface name required for "Feature Descriptors". If
specified, we can assume that a Feature Descriptor with the
interface name of the specified string is understood by the
kernel (e.g. interface.rndis).

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
[Allow multiple os_desc ifaces per funciton]
Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
This commit is contained in:
Stefan Agner 2017-01-24 14:22:25 -08:00 committed by Krzysztof Opasiak
parent 47526ac2a6
commit abf422bffc
2 changed files with 9 additions and 0 deletions

View file

@ -191,8 +191,14 @@ struct usbg_function_type usbg_f_type_eem = {
ETHER_FUNCTION_OPTS
};
static char *rndis_os_desc_ifnames[] = {
"rndis",
NULL
};
struct usbg_function_type usbg_f_type_rndis = {
.name = "rndis",
.os_desc_iname = rndis_os_desc_ifnames,
ETHER_FUNCTION_OPTS
};