The patch titled usb-serial: add support for second revision of Ericsson F3507G WWAN card has been removed from the -mm tree. Its filename was usb-serial-add-support-for-second-revision-of-ericsson-f3507g-wwan-card.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: usb-serial: add support for second revision of Ericsson F3507G WWAN card From: Patrik Kullman <patrik@xxxxxx> I noticed that my revision of the F3507G WWAN card isn't listed in drivers/usb/serial/option.c Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/usb/serial/option.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff -puN drivers/usb/serial/option.c~usb-serial-add-support-for-second-revision-of-ericsson-f3507g-wwan-card drivers/usb/serial/option.c --- a/drivers/usb/serial/option.c~usb-serial-add-support-for-second-revision-of-ericsson-f3507g-wwan-card +++ a/drivers/usb/serial/option.c @@ -296,7 +296,8 @@ static int option_resume(struct usb_ser /* Ericsson products */ #define ERICSSON_VENDOR_ID 0x0bdb -#define ERICSSON_PRODUCT_F3507G 0x1900 +#define ERICSSON_PRODUCT_F3507G_1 0x1900 +#define ERICSSON_PRODUCT_F3507G_2 0x1902 static struct usb_device_id option_ids[] = { { USB_DEVICE(OPTION_VENDOR_ID, OPTION_PRODUCT_COLT) }, @@ -511,7 +512,8 @@ static struct usb_device_id option_ids[] { USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_MF626) }, { USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_MF628) }, { USB_DEVICE(ZTE_VENDOR_ID, ZTE_PRODUCT_CDMA_TECH) }, - { USB_DEVICE(ERICSSON_VENDOR_ID, ERICSSON_PRODUCT_F3507G) }, + { USB_DEVICE(ERICSSON_VENDOR_ID, ERICSSON_PRODUCT_F3507G_1) }, + { USB_DEVICE(ERICSSON_VENDOR_ID, ERICSSON_PRODUCT_F3507G_2) }, { } /* Terminating entry */ }; MODULE_DEVICE_TABLE(usb, option_ids); _ Patches currently in -mm which might be from patrik@xxxxxx are linux-next.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html