Add "usb" keyword support to connstring to specify all usb drivers at once

This commit is contained in:
Philippe Teuwen 2012-06-06 01:10:05 +00:00
parent b4ef1a3a5d
commit 4b5b45f14a
3 changed files with 12 additions and 4 deletions

View file

@ -266,7 +266,7 @@ pn53x_usb_connstring_decode(const nfc_connstring connstring, struct pn53x_usb_de
int res = sscanf(connstring, "%[^:]:%[^:]:%[^:]", driver_name, dirname, filename);
if (!res || (0 != strcmp(driver_name, PN53X_USB_DRIVER_NAME))) {
if (!res || ((0 != strcmp(driver_name, PN53X_USB_DRIVER_NAME)) && (0 != strcmp(driver_name, "usb")))) {
// Driver name does not match.
res = 0;
} else {