Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ccf95402 authored by Jason Cooper's avatar Jason Cooper Committed by Greg Kroah-Hartman
Browse files

USB: net: asix: add support for Cables-to-Go USB Ethernet adapter



Add support to drivers/net/usb/asix.c for the Cables-to-Go "USB 2.0 to
10/100 Ethernet Adapter". USB id 0b95:772a.

Signed-off-by: default avatarJason Cooper <jason@lakedaemon.net>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent e50ae572
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -1444,6 +1444,10 @@ static const struct usb_device_id products [] = {
	// Apple USB Ethernet Adapter
	// Apple USB Ethernet Adapter
	USB_DEVICE(0x05ac, 0x1402),
	USB_DEVICE(0x05ac, 0x1402),
	.driver_info = (unsigned long) &ax88772_info,
	.driver_info = (unsigned long) &ax88772_info,
}, {
	// Cables-to-Go USB Ethernet Adapter
	USB_DEVICE(0x0b95, 0x772a),
	.driver_info = (unsigned long) &ax88772_info,
},
},
	{ },		// END
	{ },		// END
};
};