From: Marcel Holtmann Date: Sat, 26 May 2012 05:35:58 +0000 (+0200) Subject: udev: Fix matching to prefer entries with VID and PID X-Git-Tag: 1.7~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d5dc9c967dc51adb82d2a83b7cdfdc1b1eab8013;p=platform%2Fupstream%2Fofono.git udev: Fix matching to prefer entries with VID and PID --- diff --git a/plugins/udevng.c b/plugins/udevng.c index 6890cc6..872039a 100644 --- a/plugins/udevng.c +++ b/plugins/udevng.c @@ -911,6 +911,7 @@ static void add_device(const char *syspath, const char *devname, else sysattr = NULL; + DBG("%s", syspath); DBG("%s", devpath); DBG("%s (%s) %s [%s] ==> %s %s", devnode, driver, interface, number, label, sysattr); @@ -1033,7 +1034,7 @@ static void check_usb_device(struct udev_device *device) driver = vendor_list[i].driver; vendor = vid; model = pid; - break; + continue; } if (vid == NULL || pid == NULL) @@ -1041,11 +1042,9 @@ static void check_usb_device(struct udev_device *device) if (g_str_equal(vendor_list[i].vid, vid) == TRUE) { if (vendor_list[i].pid == NULL) { - if (driver == NULL) { - driver = vendor_list[i].driver; - vendor = vid; - model = pid; - } + driver = vendor_list[i].driver; + vendor = vid; + model = pid; continue; }