)]}'
{
  "log": [
    {
      "commit": "cd67435ef985d0d6279803f2ae48b5248a7178df",
      "tree": "f56c33da648696922fc0cda3d92f600749024ed9",
      "parents": [
        "191b776616838f035c2fe7eecc882b5c1f134353"
      ],
      "author": {
        "name": "David Brownell",
        "email": "dbrownell@users.sourceforge.net",
        "time": "Mon Jan 26 02:05:43 2009 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@kvm.kroah.org",
        "time": "Tue Jan 27 16:15:35 2009 -0800"
      },
      "message": "USB: musb: Kconfig fix\n\nThe Blackfin MUSB Kconfig text didn\u0027t properly parenthesise its\ndependencies.  This was visible in non-Blackfin configs by the\nway the user interfaces lost track of dependencies, when doing\na bunch of test builds.\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "191b776616838f035c2fe7eecc882b5c1f134353",
      "tree": "0f11bb71b67a584afc31fad33017ac0ba89d127c",
      "parents": [
        "704a14854aaf9758a1248ea36a7d1b8cc42a4b3e"
      ],
      "author": {
        "name": "Swaminathan S",
        "email": "swami.iyer@ti.com",
        "time": "Sat Jan 24 17:57:37 2009 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@kvm.kroah.org",
        "time": "Tue Jan 27 16:15:35 2009 -0800"
      },
      "message": "USB: musb cppi dma fix\n\nInitializes the actual_len field to 0 before every DMA transaction.\n\nSigned-off-by: Swaminathan S \u003cswami.iyer@ti.com\u003e\nAcked-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "704a14854aaf9758a1248ea36a7d1b8cc42a4b3e",
      "tree": "11379231c676335c845cebd66b86b16bb70829e9",
      "parents": [
        "96bcd090fa434b4369e6e3a9cba937d1e513596d"
      ],
      "author": {
        "name": "Hugo Villeneuve",
        "email": "hugo@hugovil.com",
        "time": "Sat Jan 24 17:57:30 2009 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@kvm.kroah.org",
        "time": "Tue Jan 27 16:15:35 2009 -0800"
      },
      "message": "USB: musb cppi bugfixes\n\nThese compilation errors are related to incorrect\ndebugging macro and variable names and generated the\nfollowing errors:\n\n  drivers/usb/musb/cppi_dma.c:437:5: warning: \"MUSB_DEBUG\" is not defined\n  drivers/usb/musb/cppi_dma.c: In function \u0027cppi_next_rx_segment\u0027:\n  drivers/usb/musb/cppi_dma.c:884: error: \u0027debug\u0027 undeclared (first use in this function)\n\nSigned-off-by: Hugo Villeneuve \u003chugo@hugovil.com\u003e\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "96bcd090fa434b4369e6e3a9cba937d1e513596d",
      "tree": "7740d4a9321ae1dd132113dfc23c5c1db4a7eda5",
      "parents": [
        "af7e0c5f126677fe8e6c4fbea37637b9c0c2fe2a"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Sat Jan 24 17:57:24 2009 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@kvm.kroah.org",
        "time": "Tue Jan 27 16:15:34 2009 -0800"
      },
      "message": "USB: musb uses endpoint functions\n\nThis set of patches introduces calls to the following set of functions:\n\nusb_endpoint_dir_in(epd)\nusb_endpoint_dir_out(epd)\nusb_endpoint_is_bulk_in(epd)\nusb_endpoint_is_bulk_out(epd)\nusb_endpoint_is_int_in(epd)\nusb_endpoint_is_int_out(epd)\nusb_endpoint_num(epd)\nusb_endpoint_type(epd)\nusb_endpoint_xfer_bulk(epd)\nusb_endpoint_xfer_control(epd)\nusb_endpoint_xfer_int(epd)\nusb_endpoint_xfer_isoc(epd)\n\nIn some cases, introducing one of these functions is not possible, and it\njust replaces an explicit integer value by one of the following constants:\n\nUSB_ENDPOINT_XFER_BULK\nUSB_ENDPOINT_XFER_CONTROL\nUSB_ENDPOINT_XFER_INT\nUSB_ENDPOINT_XFER_ISOC\n\nAn extract of the semantic patch that makes these changes is as follows:\n(http://www.emn.fr/x-info/coccinelle/)\n\n// \u003csmpl\u003e\n@r1@ struct usb_endpoint_descriptor *epd; @@\n\n- ((epd-\u003ebmAttributes \u0026 \\(USB_ENDPOINT_XFERTYPE_MASK\\|3\\)) \u003d\u003d\n- \\(USB_ENDPOINT_XFER_CONTROL\\|0\\))\n+ usb_endpoint_xfer_control(epd)\n\n@r5@ struct usb_endpoint_descriptor *epd; @@\n\n- ((epd-\u003ebEndpointAddress \u0026 \\(USB_ENDPOINT_DIR_MASK\\|0x80\\)) \u003d\u003d\n-  \\(USB_DIR_IN\\|0x80\\))\n+ usb_endpoint_dir_in(epd)\n\n@inc@\n@@\n\n#include \u003clinux/usb.h\u003e\n\n@depends on !inc \u0026\u0026 (r1||r5)@\n@@\n\n+ #include \u003clinux/usb.h\u003e\n  #include \u003clinux/usb/...\u003e\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nAcked-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "af7e0c5f126677fe8e6c4fbea37637b9c0c2fe2a",
      "tree": "67efea91d9958c74a52394299ed06f84cd9b83ec",
      "parents": [
        "97a39896816489fe9a67c223e782e8dda06f25c9"
      ],
      "author": {
        "name": "Kalle Valo",
        "email": "kalle.valo@nokia.com",
        "time": "Sat Jan 24 17:57:15 2009 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@kvm.kroah.org",
        "time": "Tue Jan 27 16:15:33 2009 -0800"
      },
      "message": "USB: musb: tusb6010 buildfix\n\ndrivers/usb/musb/tusb6010_omap.c:18:26: error: asm/arch/dma.h:\n  No such file or directory\ndrivers/usb/musb/tusb6010_omap.c:19:26: error: asm/arch/mux.h:\n  No such file or directory\n\nSigned-off-by: Kalle Valo \u003ckalle.valo@nokia.com\u003e\nAcked-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "97a39896816489fe9a67c223e782e8dda06f25c9",
      "tree": "d7d4ed0635e498a9e6a64210ac77f6d90026c027",
      "parents": [
        "37daa925cf0d4dfd2d1d9ca01e2e0d74fba3d64a"
      ],
      "author": {
        "name": "Ajay Kumar Gupta",
        "email": "ajay.gupta@ti.com",
        "time": "Sat Jan 24 17:56:39 2009 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@kvm.kroah.org",
        "time": "Tue Jan 27 16:15:33 2009 -0800"
      },
      "message": "USB: musb free_irq bugfix\n\nFixes insert module failure as free_irq() was not\ndone in previous rmmod.\n\nSigned-off-by: Ajay Kumar Gupta \u003cajay.gupta@ti.com\u003e\nAcked-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "37daa925cf0d4dfd2d1d9ca01e2e0d74fba3d64a",
      "tree": "6760325baee1551d3f69f9a5eaf8b56ccabe5ce9",
      "parents": [
        "10b4eadef140b09baf8b9ec1df37185e69773275"
      ],
      "author": {
        "name": "David Brownell",
        "email": "dbrownell@users.sourceforge.net",
        "time": "Sat Jan 24 17:56:25 2009 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@kvm.kroah.org",
        "time": "Tue Jan 27 16:15:32 2009 -0800"
      },
      "message": "USB: musb_hdrc: another davinci buildfix (otg related)\n\nThe DaVinci code had an implementation of the OTG transceiver glue\ntoo; make it use the new-standard one.\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nAcked-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "10b4eadef140b09baf8b9ec1df37185e69773275",
      "tree": "86b5128be4e7b6bf6f865bd8e1baa1ee0b0d3827",
      "parents": [
        "2bf5fa13fc8e34d7b86307b99f64a24cb7a83852"
      ],
      "author": {
        "name": "David Brownell",
        "email": "dbrownell@users.sourceforge.net",
        "time": "Sat Jan 24 17:56:17 2009 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@kvm.kroah.org",
        "time": "Tue Jan 27 16:15:32 2009 -0800"
      },
      "message": "USB: musb davinci buildfix\n\nTrying once more to get this merged.  The original was submitted\nfor 2.6.27-rc2 or so, and never got correctly merged.  Neither\nwere any of the numerous subsequent resends.  Sigh.\n\n  CC      drivers/usb/musb/davinci.o\ndrivers/usb/musb/davinci.c:35:32: error: mach/arch/hardware.h: No such file or directory\ndrivers/usb/musb/davinci.c:36:30: error: mach/arch/memory.h: No such file or directory\ndrivers/usb/musb/davinci.c:37:28: error: mach/arch/gpio.h: No such file or directory\ndrivers/usb/musb/davinci.c:373: error: redefinition of \u0027musb_platform_set_mode\u0027\ndrivers/usb/musb/davinci.c:368: error: previous definition of \u0027musb_platform_set_mode\u0027 was here\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nAcked-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "e22b582e9108b94a8bb59010da3e09709bd39746",
      "tree": "0f11d82ef80ea17f095f2f950cf43b22f5c56500",
      "parents": [
        "7833414d4f39009d4d04e96648a099630adf3f62"
      ],
      "author": {
        "name": "Bryan Wu",
        "email": "cooloney@kernel.org",
        "time": "Tue Dec 02 21:33:51 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 07 10:00:08 2009 -0800"
      },
      "message": "USB: musb: Kill some compiling warning in musb Blackfin part\n\nSigned-off-by: Bryan Wu \u003ccooloney@kernel.org\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "7833414d4f39009d4d04e96648a099630adf3f62",
      "tree": "79eafa1962fcf52716336a4d532286c4af48b27f",
      "parents": [
        "085ad4067b5def12bb0e6f50ec65302053d9186d"
      ],
      "author": {
        "name": "Bryan Wu",
        "email": "cooloney@kernel.org",
        "time": "Tue Dec 02 21:33:50 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 07 10:00:08 2009 -0800"
      },
      "message": "USB: musb: Blackfin provides read/write I/O accessor in header files\n\nDon\u0027t redefine the functions in musb driver\n\nSigned-off-by: Bryan Wu \u003ccooloney@kernel.org\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "085ad4067b5def12bb0e6f50ec65302053d9186d",
      "tree": "b81637b02507883a22c18fd0845576a962f1a6c4",
      "parents": [
        "c6cf8b003e5a37f8193c2883876c5942adcd7284"
      ],
      "author": {
        "name": "Bryan Wu",
        "email": "cooloney@kernel.org",
        "time": "Tue Dec 02 21:33:49 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 07 10:00:08 2009 -0800"
      },
      "message": "USB: musb: add Blackfin Kconfig options and Makefile\n\nSigned-off-by: Bryan Wu \u003ccooloney@kernel.org\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "c6cf8b003e5a37f8193c2883876c5942adcd7284",
      "tree": "c0ce285fb7a70dfd149ecfc325ad4c468ea0bbbc",
      "parents": [
        "6995eb68aab70e79eedb710d7d6d1f22d8aea4a7"
      ],
      "author": {
        "name": "Bryan Wu",
        "email": "cooloney@kernel.org",
        "time": "Tue Dec 02 21:33:48 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 07 10:00:07 2009 -0800"
      },
      "message": "USB: musb: add Blackfin specific configuration to MUSB\n\nSome config registers are not avaiable in Blackfin, we have to comment them out.\n\nv1-v2:\n - remove Blackfin specific header file\n - add Blackfin register version to musb_regs.h header file\n\nSigned-off-by: Bryan Wu \u003ccooloney@kernel.org\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "6995eb68aab70e79eedb710d7d6d1f22d8aea4a7",
      "tree": "6d34a3ee0e6a133010154812cc0170b7fb3a3e2f",
      "parents": [
        "2c557a4a98be67ea54dfd0e8497050a24b7311c6"
      ],
      "author": {
        "name": "Bryan Wu",
        "email": "cooloney@kernel.org",
        "time": "Tue Dec 02 21:33:47 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 07 10:00:07 2009 -0800"
      },
      "message": "USB: musb: enable low level DMA operation for Blackfin\n\n- DMA registers in Blackfin have different layout\n- DMA interrupt flags need to be cleared by software\n\nSigned-off-by: Bryan Wu \u003ccooloney@kernel.org\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "2c557a4a98be67ea54dfd0e8497050a24b7311c6",
      "tree": "e7b69c33b150824c2b21c2ff5c36a56c5a63af2d",
      "parents": [
        "d426e60dbf6aa2c3199e37a59c6d134eb204d628"
      ],
      "author": {
        "name": "Bryan Wu",
        "email": "cooloney@kernel.org",
        "time": "Tue Dec 02 21:33:46 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 07 10:00:07 2009 -0800"
      },
      "message": "USB: musb: add Blackfin version low level register accessing helper functions\n\nadd Blackfin version low level register accessing helper functions\n\nSigned-off-by: Bryan Wu \u003ccooloney@kernel.org\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "d426e60dbf6aa2c3199e37a59c6d134eb204d628",
      "tree": "87bd54ee419540927c894a38bc5715863a15cf79",
      "parents": [
        "0c6a8818447d38f7bb0b0013448659113d37a3e1"
      ],
      "author": {
        "name": "Robin Getz",
        "email": "rgetz@blackfin.uclinux.org",
        "time": "Tue Dec 02 21:33:45 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 07 10:00:07 2009 -0800"
      },
      "message": "USB: musb: Make sure we program the correct values in only when necessary.\n\nMake sure we program the correct values in only when necessary.\n\nSigned-off-by: Robin Getz \u003crgetz@blackfin.uclinux.org\u003e\nSigned-off-by: Bryan Wu \u003ccooloney@kernel.org\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "0c6a8818447d38f7bb0b0013448659113d37a3e1",
      "tree": "c4c7451232c6fdc9db1d4a51757c4e24ef2dcb4d",
      "parents": [
        "2ffcdb3bdadaf8260986e96384df26c94a6ad42c"
      ],
      "author": {
        "name": "Bryan Wu",
        "email": "cooloney@kernel.org",
        "time": "Tue Dec 02 21:33:44 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 07 10:00:07 2009 -0800"
      },
      "message": "USB: musb: add Blackfin driver to MUSB framework (v2)\n\n- replace MUSB_FIFOSIZE register to MUSB_TXCOUNT, cause no MUSB_FIFOSIZE\n   register on Blackfin\n- use #ifdef to replace #if defined()\n\nSigned-off-by: Bryan Wu \u003ccooloney@kernel.org\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "c48a5155252fd9cba7bedc59e5f8a339a3454d58",
      "tree": "6de25e14731e56ba0ddf5b07d137237be40e9ba5",
      "parents": [
        "b6a49b8490fe6f22f0027a3f05eb498918f09303"
      ],
      "author": {
        "name": "Felipe Balbi",
        "email": "felipe.balbi@nokia.com",
        "time": "Mon Nov 24 13:06:53 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 07 10:00:01 2009 -0800"
      },
      "message": "USB: musb: check if set_irq_wake succeded and remember it\n\nWithout it, in platforms that don\u0027t provide irq_chip.set_wake(),\nlike omap, musb will WARN() on driver removal.\n\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "bb1c9ef1b4cd64f22e15e8447deac6043eeb151c",
      "tree": "fff9e2971fb989562519928c4b13728bcd469027",
      "parents": [
        "71783e0defa16ca5abca7750df98ff8e7767bd2e"
      ],
      "author": {
        "name": "David Brownell",
        "email": "dbrownell@users.sourceforge.net",
        "time": "Mon Nov 24 13:06:50 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 07 09:59:59 2009 -0800"
      },
      "message": "USB: musb: host side diagnostics tweaks\n\nRandom host-side MUSB updates, mostly relating to better diagnostics:\n\n + Improve diagnostics on host side:\n    - tx flush fifo:\n       * Avoid hundreds of duplicate TX FIFONOTEMPTY messages\n       * make \"Can\u0027t flush TX fifo\" a warning, and say which endpoint\n    - giveback:\n       * use correct status code\n       * show completion function name not just URB pointer\n    - Fix annoying \"1 bytes\" (should be \"1 byte\")\n\n + Be more consistent about failing init of unusable fifo_mode\n\nIt\u0027s not clear why that \"can\u0027t flush TX fifo\" message appears, though\nit might relate to disconnection; I see it not infrequently\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "71783e0defa16ca5abca7750df98ff8e7767bd2e",
      "tree": "3e4180012869e613bea9a6175bd8423287218604",
      "parents": [
        "58e660266d92aaa186c3df607c0ee88f18c8f4da"
      ],
      "author": {
        "name": "David Brownell",
        "email": "dbrownell@users.sourceforge.net",
        "time": "Mon Nov 24 13:06:49 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 07 09:59:59 2009 -0800"
      },
      "message": "USB: musb: minor locking fix\n\nMinor locking fix for musb_hdrc on OMAP3 and OMAP2430:\ndon\u0027t read DEVCTL without holding the spinlock, since\nan IRQ could come in and corrupt things.\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "58e660266d92aaa186c3df607c0ee88f18c8f4da",
      "tree": "fd5f63b05cffd02d0777aac2241a665d331946bd",
      "parents": [
        "96a274d1da950a96cb31ac1bed044e049d770980"
      ],
      "author": {
        "name": "Kevin Hilman",
        "email": "khilman@deeprootsystems.com",
        "time": "Mon Nov 24 13:06:48 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 07 09:59:58 2009 -0800"
      },
      "message": "USB: musb: build fixes for DaVinci\n\n- update includes after asm/arch --\u003e mach headers move\n- adds musb_platform_set_mode() stub\n\nSigned-off-by: Kevin Hilman \u003ckhilman@deeprootsystems.com\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "96a274d1da950a96cb31ac1bed044e049d770980",
      "tree": "6069c17f492e3bfbc75d59b3d6d47a81bf7ae7d6",
      "parents": [
        "aa69a8093ff985873cb44fe1157bd6db29a20fe4"
      ],
      "author": {
        "name": "David Brownell",
        "email": "dbrownell@users.sourceforge.net",
        "time": "Mon Nov 24 13:06:47 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 07 09:59:58 2009 -0800"
      },
      "message": "USB: musb: sysfs mode updates\n\nFix three omissions in the \"mode\" sysfs attribute support:\n  (a) inability to report errors;\n  (b) no DaVinci support ... just report an error;\n  (c) for omap2430, accepting unsupportable values\n\nThe 2430 stuff is still odd....\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "427c4f333474f5447f62387c1fb060e586c1a781",
      "tree": "04aada64f2a30eea745a9f2d083a56680e5041d4",
      "parents": [
        "796bcae7361c28cf825780f6f1aac9dd3411394e"
      ],
      "author": {
        "name": "Kay Sievers",
        "email": "kay.sievers@vrfy.org",
        "time": "Fri Nov 07 01:52:53 2008 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 07 09:59:52 2009 -0800"
      },
      "message": "usb: struct device - replace bus_id with dev_name(), dev_set_name()\n\nSigned-off-by: Kay Sievers \u003ckay.sievers@vrfy.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "aa5cbbecd903e5692b64f871c385ece1c5508eac",
      "tree": "4ed5e7dda3b791745f54d2de761193dc8f1c38ef",
      "parents": [
        "b09bc6cbae4dd3a2d35722668ef2c502a7b8b093"
      ],
      "author": {
        "name": "Felipe Balbi",
        "email": "felipe.balbi@nokia.com",
        "time": "Mon Nov 17 09:08:16 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@kvm.kroah.org",
        "time": "Wed Nov 19 22:01:34 2008 -0800"
      },
      "message": "usb: musb: fix bug in musb_schedule\n\nThis bug was introduced recently. Fix it before bigger\nproblems appear.\n\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nCc: Sergei Shtylyov \u003csshtylyov@ru.mvista.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "23d15e070c2fe5d341ca04275f6ea1b5a5fcb26f",
      "tree": "9fa6808984c70ade8959f5ac766c1b32d9e629b1",
      "parents": [
        "b60c72abdbd44ed2a63fa80455d0b7f18ce76d2b"
      ],
      "author": {
        "name": "Ajay Kumar Gupta",
        "email": "ajay.gupta@ti.com",
        "time": "Wed Oct 29 15:10:35 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Nov 13 14:45:01 2008 -0800"
      },
      "message": "usb: musb: fix BULK request on different available endpoints\n\nFixes co-working issue of usb serial device with usb/net devices while\noter endpoints are free and can be used.This patch implements the policy\nthat if endpoint resources are available then different BULK request goes\nto different endpoint otherwise they are multiplexed to one reserved\nendpoint as currently done.\n\nSwitch statement case is reordered in musb_giveback() to take care of\nbulk request both in multiplex scenario and otherwise.\n\nNAK limit scheme has to be added for multiplexed BULK request scenario\nto avoid endpoint starvation due to usb/net devices.\n\nSigned-off-by: Ajay Kumar Gupta \u003cajay.gupta@ti.com\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "b60c72abdbd44ed2a63fa80455d0b7f18ce76d2b",
      "tree": "a4d260b5e530427ff349b0327cf5a935bf6c5828",
      "parents": [
        "eef767b761bdd08200fbbfc910ab815d03787326"
      ],
      "author": {
        "name": "Felipe Balbi",
        "email": "felipe.balbi@nokia.com",
        "time": "Wed Oct 29 15:10:39 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Nov 13 14:45:01 2008 -0800"
      },
      "message": "usb: musb: fix debug global variable name\n\nIn order to avoid namespace conflicts, add a prefix\nto our kernel-wise symbol.\n\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "eef767b761bdd08200fbbfc910ab815d03787326",
      "tree": "f8a530869152bcb0860dc2395038fe38eab781a9",
      "parents": [
        "14a2c96f72e0939cb817b6624346b0161b5603db"
      ],
      "author": {
        "name": "Ajay Kumar Gupta",
        "email": "ajay.gupta@ti.com",
        "time": "Wed Oct 29 15:10:38 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Nov 13 14:45:01 2008 -0800"
      },
      "message": "usb: musb: Removes compilation warning in gadget mode\n\nFixes compilation warning when musb is configured in gadget mode.\n\nSigned-off-by: Ajay Kumar Gupta \u003cajay.gupta@ti.com\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "14a2c96f72e0939cb817b6624346b0161b5603db",
      "tree": "3ee4e3d333fc17d7b7e664c8e2838922f0faeb0b",
      "parents": [
        "f82a689faeb328ba7c194782f42cc438519d508e"
      ],
      "author": {
        "name": "Felipe Balbi",
        "email": "felipe.balbi@nokia.com",
        "time": "Wed Oct 29 15:10:36 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Nov 13 14:45:01 2008 -0800"
      },
      "message": "usb: musb: tusb6010: kill compile warning\n\nAdd an errno to failing case.\n\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "f82a689faeb328ba7c194782f42cc438519d508e",
      "tree": "82f8847b5162267e05e89edc01d0633d8c550def",
      "parents": [
        "352d026338378b1f13f044e33c1047da6e470056"
      ],
      "author": {
        "name": "Ajay Kumar Gupta",
        "email": "ajay.gupta@ti.com",
        "time": "Wed Oct 29 15:10:31 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Nov 13 14:45:00 2008 -0800"
      },
      "message": "usb: musb: Fix for isochronous IN transfer\n\nFixes blurred capture images in dma mode. Isochronous error field in\nurb and source data buffer pointer were not updated properly in dma\nmode.\n\nSigned-off-by: Ajay Kumar Gupta \u003cajay.gupta@ti.com\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "28c2c51c078296151549f4f0e823e804f773861b",
      "tree": "ec7617adf5885ef6128b0f95fb843b8d7fed8c9f",
      "parents": [
        "458e6a511f9dc91e5af5e64740b0a5c9650a25fb"
      ],
      "author": {
        "name": "Felipe Balbi",
        "email": "felipe.balbi@nokia.com",
        "time": "Thu Sep 11 11:53:25 2008 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Fri Oct 17 14:40:59 2008 -0700"
      },
      "message": "usb: musb: remove dead code from procfs\n\nWhen removing the procfs file, I forgot to remove some\ncode that created and removed that file. Here\u0027s a patch\nto fix it. Ideally this patch will be melded into the patch\nremoving the procfs file, don\u0027t know if it\u0027s possible still.\n\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "458e6a511f9dc91e5af5e64740b0a5c9650a25fb",
      "tree": "003551075b14ad2670c183898d28c4a9544d01aa",
      "parents": [
        "c767c1c6f1febbd1351cc152bba6e37889322d17"
      ],
      "author": {
        "name": "Felipe Balbi",
        "email": "felipe.balbi@nokia.com",
        "time": "Thu Sep 11 11:53:24 2008 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Fri Oct 17 14:40:59 2008 -0700"
      },
      "message": "usb: musb: general cleanup to musbhsdma.c\n\nBasically getting rid of CaMeLcAsE, but also adding\nmissing lines and spaces.\n\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "c767c1c6f1febbd1351cc152bba6e37889322d17",
      "tree": "8385c715dbdeef2b90f11dcef7b3e0dcdf49992a",
      "parents": [
        "64ca44a65adf131c4df5124fe0fcdc3896f0f0dc"
      ],
      "author": {
        "name": "David Brownell",
        "email": "dbrownell@users.sourceforge.net",
        "time": "Thu Sep 11 11:53:23 2008 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Fri Oct 17 14:40:59 2008 -0700"
      },
      "message": "usb: musb_hdrc build fixes\n\nMinor musb_hdrc updates:\n\n  - so it\u0027ll build on DaVinci, given relevant platform updates;\n      * remove support for an un-shipped OTG prototype\n      * rely on gpiolib framework conversion for the I2C GPIOs\n      * the \u003casm/arch/hdrc_cnf.h\u003e mechanism has been removed\n\n  - catch comments up to the recent removal of the per-SOC header\n    with the silicon configuration data;\n\n  - and remove two inappropriate \"inline\" declarations which\n    just bloat host side code.\n\nThere are still some more \u003casm/arch/XYZ.h\u003e \u003d\u003d\u003e \u003cmach/XYZ.h\u003e\nchanges needed in this driver, catching up to the relocation\nof most of the include/asm-arm/arch-* contents.\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nCc: stable \u003cstable@kernel.org\u003e [2.6.27]\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "64ca44a65adf131c4df5124fe0fcdc3896f0f0dc",
      "tree": "328ab041e72f51ec83d7a0f01391ecb4e08ac7a2",
      "parents": [
        "2492e6747f2441562b1341cef1d46e076f346a1f"
      ],
      "author": {
        "name": "Bryan Wu",
        "email": "cooloney@kernel.org",
        "time": "Thu Sep 11 11:53:22 2008 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Fri Oct 17 14:40:59 2008 -0700"
      },
      "message": "usb: musb: do not mess up count number and CSR0 register value\n\nSigned-off-by: Bryan Wu \u003ccooloney@kernel.org\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "2492e6747f2441562b1341cef1d46e076f346a1f",
      "tree": "9f2f1928a36b4fb7e05f79e0c694382713dc8c92",
      "parents": [
        "ae5ad2963939d24eb77b8fa725d0703dc0f97a47"
      ],
      "author": {
        "name": "Ajay Kumar Gupta",
        "email": "ajay.gupta@ti.com",
        "time": "Thu Sep 11 11:53:21 2008 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Fri Oct 17 14:40:58 2008 -0700"
      },
      "message": "OMAP:MUSB: Corrects urb unlink function path\n\nFixes kernel panic while ISO IN transfer is aborted.Replaced\nusb_hcd_unlink_urb_from_ep() from musb_giveback() to __musb_giveback()\nto make sure urb is unlinked before giveback when __musb_giveback() is\ncalled from musb_urb_dequeue().\n\nAcquired musb-\u003elock() before usb_hcd_unlink_urb_from_ep() within in\nenqueue path.\n\nSigned-off-by: Ajay Kumar Gupta \u003cajay.gupta@ti.com\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "ae5ad2963939d24eb77b8fa725d0703dc0f97a47",
      "tree": "c3352e773109d9b54086717363e95ebbf9301da8",
      "parents": [
        "eaa3246e7dbddd7a029bef22e8b80cbab03466a2"
      ],
      "author": {
        "name": "Ajay Kumar Gupta",
        "email": "ajay.gupta@ti.com",
        "time": "Thu Sep 11 11:53:20 2008 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Fri Oct 17 14:40:58 2008 -0700"
      },
      "message": "OMAP:MUSB: Fixes the TT programming.\n\nFixes enumeration failures when a USB device attached to a LS hub is\nconnected to OMAP EVM via HS hub. This is fixed by correctly\nprogramming hub address register in enqueue path.\n\nSigned-off-by: Ajay Kumar Gupta \u003cajay.gupta@ti.com\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "eaa3246e7dbddd7a029bef22e8b80cbab03466a2",
      "tree": "f799dc051edfd0ec75c9e5b7406c9bb5f20e1e12",
      "parents": [
        "f9e9cff613b8239ce9159735aa662c9c85b478bf"
      ],
      "author": {
        "name": "Felipe Balbi",
        "email": "felipe.balbi@nokia.com",
        "time": "Thu Sep 11 11:53:19 2008 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Fri Oct 17 14:40:58 2008 -0700"
      },
      "message": "musb: io: only define read/write stubs if they\u0027re not defined yet\n\nFor those archs which don\u0027t provide read/write friends we\nprovide our own implementation so musb driver won\u0027t break\ncompilation.\n\nThis is temporary fix until a better solution comes from\nupstream. Idealy, \u003clinux/io.h\u003e would provide those calls\nif the architecture did not provide them yet. In that case\nbeing possible to remove all those stubs from musb_io.h\n\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "02582b92f60fa33b68b90263013e98550286db0a",
      "tree": "4b3a786ed87664559093061d213ea4b09df84e42",
      "parents": [
        "cede969fe21adece300300a455580635590deb47"
      ],
      "author": {
        "name": "Kevin Hilman",
        "email": "khilman@deeprootsystems.com",
        "time": "Mon Sep 15 12:09:31 2008 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Fri Oct 17 14:40:58 2008 -0700"
      },
      "message": "MUSB: Add sanity check for maximum number of endpoints\n\nThere is no check if platform code passes in more endpoints (num_eps)\nthan the maximum number of enpoints (MUSB_C_NUM_EPS.)  The result is\nthat allocate_instance() happily writes past the end of \u0027struct musb\u0027\ncorrupting memory.\n\nThis patch adds a BUG() if the platform code requests more than the max.\n\nSigned-off-by: Kevin Hilman \u003ckhilman@deeprootsystems.com\u003e\nAcked-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "09fa14aa9273ca5cf5459b2057eb79e83e81e6be",
      "tree": "e5745b01715fc3e2cd1bb93e4955ac1e4f5b6c56",
      "parents": [
        "b77a5c7040643e658622148bb7d7dad63e8d0158"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@linux-foundation.org",
        "time": "Mon Sep 22 15:00:08 2008 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Sep 23 13:58:09 2008 -0700"
      },
      "message": "USB: drivers/usb/musb/: disable it on SuperH\n\nIn file included from drivers/usb/musb/musb_core.h:59,\n                 from drivers/usb/musb/musb_core.c:108:\ndrivers/usb/musb/musb_io.h:42: error: conflicting types for \u0027__raw_readsl\u0027\n/usr/src/devel/arch/sh/include/asm/io.h:112: error: previous declaration of \u0027__raw_readsl\u0027 was here\ndrivers/usb/musb/musb_io.h:42: error: conflicting types for \u0027__raw_readsl\u0027\n/usr/src/devel/arch/sh/include/asm/io.h:112: error: previous declaration of \u0027__raw_readsl\u0027 was here\ndrivers/usb/musb/musb_io.h:44: error: conflicting types for \u0027readsw\u0027\n/usr/src/devel/arch/sh/include/asm/io.h:164: error: previous definition of \u0027readsw\u0027 was here\ndrivers/usb/musb/musb_io.h:46: error: conflicting types for \u0027readsb\u0027\n/usr/src/devel/arch/sh/include/asm/io.h:163: error: previous definition of \u0027readsb\u0027 was here\ndrivers/usb/musb/musb_io.h:49: error: conflicting types for \u0027__raw_writesl\u0027\n/usr/src/devel/arch/sh/include/asm/io.h:111: error: previous declaration of \u0027__raw_writesl\u0027 was here\ndrivers/usb/musb/musb_io.h:49: error: conflicting types for \u0027__raw_writesl\u0027\n/usr/src/devel/arch/sh/include/asm/io.h:111: error: previous declaration of \u0027__raw_writesl\u0027 was here\ndrivers/usb/musb/musb_io.h:51: error: conflicting types for \u0027writesw\u0027\n/usr/src/devel/arch/sh/include/asm/io.h:164: error: previous definition of \u0027writesw\u0027 was here\ndrivers/usb/musb/musb_io.h:53: error: conflicting types for \u0027writesb\u0027\n/usr/src/devel/arch/sh/include/asm/io.h:163: error: previous definition of \u0027writesb\u0027 was here\n\nCc: Karsten Keil \u003ckkeil@suse.de\u003e\nCc: Paul Mundt \u003clethal@linux-sh.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "0590d5875e3a5dc6586fb16354037f115628896d",
      "tree": "d7008cbf81fc06e2d54a08408faa414da4a52e92",
      "parents": [
        "49cd2480baeb377f91e66ba682f81cac2a1feaa1"
      ],
      "author": {
        "name": "Felipe Balbi",
        "email": "felipe.balbi@nokia.com",
        "time": "Sat Aug 30 19:42:02 2008 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Sep 23 13:58:08 2008 -0700"
      },
      "message": "usb: musb: fix include path\n\nheaders were moved, fixing.\n\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "fb85d991616046f1b640ed9c4eab9b44908dab74",
      "tree": "3af15b058a217f2411329711511870b736485386",
      "parents": [
        "e8164f64caff68d4e878e1719d88d145faa75f1d"
      ],
      "author": {
        "name": "Anand Gadiyar",
        "email": "gadiyar@ti.com",
        "time": "Thu Aug 21 20:21:00 2008 +0530"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Aug 21 10:26:34 2008 -0700"
      },
      "message": "MUSB: Fix index register corruption seen with g_ether and Windows host\n\nIf Indexed Mode register accesses are enabled, the ep0_rxstate()\nfunction calls musb_g_ep0_giveback() before writing to the CSR\nregister. When control returns to this ep0_rxstate, the index\nregister contents are over-written. This causes the CSR register\nwrite to fail.\n\nFixed by writing the correct value into the index register before\nwriting to the CSR.\n\nThis was observed only in ep0_rxstate() with g_ether loaded and\nthe device connected to a MS Windows host PC. Anticipatively fixed\nep0_txstate() as well.\n\nSigned-off-by: Anand Gadiyar \u003cgadiyar@ti.com\u003e\nAcked-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "e8164f64caff68d4e878e1719d88d145faa75f1d",
      "tree": "bcf46d52a12d2ecb5acd6cdac8bb15e5aabc3f58",
      "parents": [
        "746cdd0b2d1254b11382789b6630c4d379bdcf13"
      ],
      "author": {
        "name": "Felipe Balbi",
        "email": "felipe.balbi@nokia.com",
        "time": "Sun Aug 10 21:22:35 2008 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Aug 21 10:26:34 2008 -0700"
      },
      "message": "usb: musb: get rid of MUSB_LOGLEVEL and use parameter\n\nWe can change debugging level on the fly via\n/sys/module/musb_hdrc/parameters/debug.\n\nWe can also get rid of the LOGLEVEL facility in Kconfig\nand rely only in module parameter.\n\nCc: Anand Gadiyar \u003cgadiyar@ti.com\u003e\nCc: Bryan Wu \u003cbryan.wu@analog.com\u003e\nCc: David Brownell \u003cdavid-b@pacbell.net\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "746cdd0b2d1254b11382789b6630c4d379bdcf13",
      "tree": "6c4e9ab788b727a16938388f4e45c5f582f6ab99",
      "parents": [
        "bf31338bfd5d04434adf2294255847bb7dad687a"
      ],
      "author": {
        "name": "Felipe Balbi",
        "email": "felipe.balbi@nokia.com",
        "time": "Sun Aug 10 21:22:34 2008 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Aug 21 10:26:33 2008 -0700"
      },
      "message": "usb: musb: get rid of procfs entry\n\nDrivers should not add procfs. The functionality in the old\nprocfs file will be moved to debugfs.\n\nCc: Anand Gadiyar \u003cgadiyar@ti.com\u003e\nCc: Bryan Wu \u003cbryan.wu@analog.com\u003e\nCc: David Brownell \u003cdavid-b@pacbell.net\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "ca6d1b1333bc2e61e37982de1f28d8604c232414",
      "tree": "6675d284fc932e9125fc7fd083eebb7f0a1d5695",
      "parents": [
        "f362a47560070ec0aaf68ac6b45901eeed1c844f"
      ],
      "author": {
        "name": "Felipe Balbi",
        "email": "felipe.balbi@nokia.com",
        "time": "Fri Aug 08 12:40:54 2008 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Aug 13 17:33:01 2008 -0700"
      },
      "message": "usb: musb: pass configuration specifics via pdata\n\nUse platform_data to pass musb configuration-specific\ndetails to musb driver.\n\nThis patch will prevent that other platforms selecting\nHAVE_CLK and enabling musb won\u0027t break tree building.\n\nThe other parts of it will come when linux-omap merge\nup more omap2/3 board-files.\n\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nAcked-by: Paul Mundt \u003clethal@linux-sh.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "f362a47560070ec0aaf68ac6b45901eeed1c844f",
      "tree": "13712fa7b938488a35ab16777133e6adabec17df",
      "parents": [
        "550a7375fe720924241f0eb76e4a5c1a3eb8c32f"
      ],
      "author": {
        "name": "Felipe Balbi",
        "email": "felipe.balbi@nokia.com",
        "time": "Mon Aug 04 13:53:52 2008 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Aug 13 17:33:00 2008 -0700"
      },
      "message": "usb: musb: fix hanging when rmmod gadget driver\n\nIf we try to modprobe a second gadget driver before\nrmmoding the first one, the reference for the first\ngadget driver would get NULLed avoiding usb to change\ngadget drivers later.\n\nCc: David Brownell \u003cdavid-b@pacbell.net\u003e\nCc: Tony Lindgren \u003ctony@atomide.com\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "550a7375fe720924241f0eb76e4a5c1a3eb8c32f",
      "tree": "bf973b43f6248e085557dcc268ad04d6e438d030",
      "parents": [
        "f331e40ee8e4861e1d82310b1af7cf75de7370ac"
      ],
      "author": {
        "name": "Felipe Balbi",
        "email": "felipe.balbi@nokia.com",
        "time": "Thu Jul 24 12:27:36 2008 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Aug 13 17:33:00 2008 -0700"
      },
      "message": "USB: Add MUSB and TUSB support\n\nThis patch adds support for MUSB and TUSB controllers\nintegrated into omap2430 and davinci. It also adds support\nfor external tusb6010 controller.\n\nCc: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nCc: Tony Lindgren \u003ctony@atomide.com\u003e\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n\n"
    }
  ]
}
