diff options
author | Koen Kooi <koen@openembedded.org> | 2009-01-20 19:25:22 +0100 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-01-20 19:25:22 +0100 |
commit | a8d0ddd5c81877eb215d8ffb00cdd0641345e104 (patch) | |
tree | 4b7401324413400b1b9662b6fbe68ff231a8a5a2 /packages/linux | |
parent | 0ecb99b2c6138926d80e6190009ff496dea352e5 (diff) |
linux-omap 2.6.27: add patch to make gwc device work
Diffstat (limited to 'packages/linux')
-rw-r--r-- | packages/linux/linux-omap-2.6.27/add-gwc.diff | 30 | ||||
-rw-r--r-- | packages/linux/linux-omap_2.6.27.bb | 3 |
2 files changed, 32 insertions, 1 deletions
diff --git a/packages/linux/linux-omap-2.6.27/add-gwc.diff b/packages/linux/linux-omap-2.6.27/add-gwc.diff new file mode 100644 index 0000000000..cb586640ae --- /dev/null +++ b/packages/linux/linux-omap-2.6.27/add-gwc.diff @@ -0,0 +1,30 @@ +From: Jason Cooper <jason@lakedaemon.net> +Date: Tue, 11 Nov 2008 18:02:53 +0000 (-0500) +Subject: USB: net: asix: add support for Cables-to-Go USB Ethernet adapter +X-Git-Tag: v2.6.28-rc5~16^2 +X-Git-Url: http://git.kernel.org/?p=linux%2Fkernel%2Fgit%2Ftmlind%2Flinux-omap-2.6.git;a=commitdiff_plain;h=ccf95402d0ae6f433f29ce88cfd589cec8fc81ad + +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: Jason Cooper <jason@lakedaemon.net> +Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> +--- + +diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c +index 37ecf84..e12cdb4 100644 +--- a/drivers/net/usb/asix.c ++++ b/drivers/net/usb/asix.c +@@ -1444,6 +1444,10 @@ static const struct usb_device_id products [] = { + // Apple USB Ethernet Adapter + USB_DEVICE(0x05ac, 0x1402), + .driver_info = (unsigned long) &ax88772_info, ++}, { ++ // Cables-to-Go USB Ethernet Adapter ++ USB_DEVICE(0x0b95, 0x772a), ++ .driver_info = (unsigned long) &ax88772_info, + }, + { }, // END + }; diff --git a/packages/linux/linux-omap_2.6.27.bb b/packages/linux/linux-omap_2.6.27.bb index a5f5cad870..c3807d418a 100644 --- a/packages/linux/linux-omap_2.6.27.bb +++ b/packages/linux/linux-omap_2.6.27.bb @@ -6,7 +6,7 @@ KERNEL_IMAGETYPE = "uImage" COMPATIBLE_MACHINE = "omap5912osk|omap1710h3|omap2430sdp|omap2420h4|beagleboard|omap3evm" SRCREV = "2a3408be17f287fdb5809c9b6c68e7ad96d25b74" -PR = "r12" +PR = "r13" SRC_URI = "git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6.git;protocol=git \ file://defconfig" @@ -40,6 +40,7 @@ SRC_URI_append = " \ file://sitecomwl168-support.diff;patch=1 \ file://nand.patch;patch=1 \ file://musb-rxtx.patch;patch=1 \ + file://add-gwc.diff;patch=1 \ " |