Add support for the HP branded version of the sierra mc8775.

Patch from Stefan Seyfried <seife@suse.de>.
This commit is contained in:
Tambet Ingo
2008-12-04 17:39:15 +02:00
parent 3d84a60ab1
commit 793044b577

View File

@@ -80,6 +80,14 @@ supports_udi (MMPlugin *plugin, LibHalContext *hal_ctx, const char *udi)
if (vendor == 0x1199)
supported = TRUE;
if (vendor == 0x03f0) {
int product;
product = libhal_device_get_property_int (hal_ctx, parent_udi, "usb.product_id", NULL);
if (product == 0x1e1d)
supported = TRUE;
}
libhal_free_string (parent_udi);
}
}