From 793044b577c18d3b9028276fdec629981c75f5ed Mon Sep 17 00:00:00 2001 From: Tambet Ingo Date: Thu, 4 Dec 2008 17:39:15 +0200 Subject: [PATCH] Add support for the HP branded version of the sierra mc8775. Patch from Stefan Seyfried . --- plugins/mm-plugin-sierra.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/mm-plugin-sierra.c b/plugins/mm-plugin-sierra.c index 6e7b6976..7185c4dd 100644 --- a/plugins/mm-plugin-sierra.c +++ b/plugins/mm-plugin-sierra.c @@ -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); } }