From 3efe83956be40c98f3ac44cd186a056ec5cf0066 Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Tue, 8 Mar 2016 23:26:12 +0100 Subject: Fix device detection code --- misc/ipedevices.xml | 8 ++++---- pcilib/xml.c | 2 +- xml/devices/testdevice.xml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/misc/ipedevices.xml b/misc/ipedevices.xml index 889a917..b0c8ee3 100644 --- a/misc/ipedevices.xml +++ b/misc/ipedevices.xml @@ -1,7 +1,7 @@ - - - - + + + + diff --git a/pcilib/xml.c b/pcilib/xml.c index 467c9c7..c514f40 100644 --- a/pcilib/xml.c +++ b/pcilib/xml.c @@ -1294,7 +1294,7 @@ char *pcilib_detect_xml_model(pcilib_t *ctx, unsigned int vendor_id, unsigned in xmlXPathObjectPtr nodes; xmlChar xpath_query[64]; - xmlStrPrintf(xpath_query, sizeof(xpath_query), (xmlChar*)"/devices/device[@vendor=%x and @device=%x]/@model", vendor_id, device_id); + xmlStrPrintf(xpath_query, sizeof(xpath_query), (xmlChar*)"/devices/device[@vendor=\"%04x\" and @device=\"%04x\"]/@model", vendor_id, device_id); data_dir = getenv("PCILIB_DATA_DIR"); if (!data_dir) data_dir = PCILIB_DATA_DIR; diff --git a/xml/devices/testdevice.xml b/xml/devices/testdevice.xml index d7f7d11..c9cdd3d 100644 --- a/xml/devices/testdevice.xml +++ b/xml/devices/testdevice.xml @@ -1,4 +1,4 @@ - + -- cgit v1.2.1