)]}'
{
  "log": [
    {
      "commit": "8fdff6a319e7dac757c558bd283dc4577e68cde7",
      "tree": "7f6858f46ac95f771776148af228a0db98dbde38",
      "parents": [
        "596580d0ee1d17af70920a7bb06c963418014dd1"
      ],
      "author": {
        "name": "Daniel Mack",
        "email": "zonque@gmail.com",
        "time": "Thu Apr 12 13:51:11 2012 +0200"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Apr 13 10:23:42 2012 +0200"
      },
      "message": "ALSA: snd-usb: implement new endpoint streaming model\n\nThis patch adds a new generic streaming logic for audio over USB.\n\nIt defines a model (snd_usb_endpoint) that handles everything that\nis related to an USB endpoint and its streaming. There are functions to\nactivate and deactivate an endpoint (which call usb_set_interface()),\nand to start and stop its URBs. It also has function pointers to be\ncalled when data was received or is about to be sent, and pointer to\na sync slave (another snd_usb_endpoint) that is informed when data has\nbeen received.\n\nA snd_usb_endpoint knows about its state and implements a refcounting,\nso only the first user will actually start the URBs and only the last\none to stop it will tear them down again.\n\nWith this sort of abstraction, the actual streaming is decoupled from\nthe pcm handling, which makes the \"implicit feedback\" mechanisms easy to\nimplement.\n\nIn order to split changes properly, this patch only adds the new\nimplementation but leaves the old one around, so the the driver doesn\u0027t\nchange its behaviour. The switch to actually use the new code is\nsubmitted separately.\n\nSigned-off-by: Daniel Mack \u003czonque@gmail.com\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "596580d0ee1d17af70920a7bb06c963418014dd1",
      "tree": "f849b2f0a5b7ea698efcdc26878b73939ad7a835",
      "parents": [
        "dd775ae2549217d3ae09363e3edb305d0fa19928"
      ],
      "author": {
        "name": "Daniel Mack",
        "email": "zonque@gmail.com",
        "time": "Thu Apr 12 13:51:10 2012 +0200"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Apr 13 10:21:55 2012 +0200"
      },
      "message": "ALSA: snd-usb: add snd_usb_audio-wide mutex\n\nThis is needed for new card-wide list operations.\n\nSigned-off-by: Daniel Mack \u003czonque@gmail.com\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "1ef0e0a05345b7411bdabbfca27f58bd33dcc7c8",
      "tree": "84e8816d89a6918411226c3f58501db59cd0b924",
      "parents": [
        "391e69143d0a05f960e3ab39a8c26b7b230bb8a9"
      ],
      "author": {
        "name": "Kristian Amlie",
        "email": "kristian@amlie.name",
        "time": "Fri Aug 26 13:19:49 2011 +0200"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Aug 26 14:12:34 2011 +0200"
      },
      "message": "ALSA: usb-audio: add Starr Labs USB MIDI support\n\nAdd support for Starr Labs USB MIDI devices such as the Z7S, which are\nbased on an FTDI serial UART chip.\n\nBased on a patch by Daniel Mack.\n\nSigned-off-by: Kristian Amlie \u003ckristian@amlie.name\u003e\nAcked-by: Daniel Mack \u003czonque@gmail.com\u003e\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "014950b013b7966b7e4a3ae6931c75e3c115296f",
      "tree": "2b1f0b8f92bec82244e92e2d1c72499875d3ff0c",
      "parents": [
        "9e38658f703732cb69936553cef4bdb4e5294f3f"
      ],
      "author": {
        "name": "Daniel Mack",
        "email": "zonque@gmail.com",
        "time": "Wed May 25 09:09:02 2011 +0200"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Wed May 25 09:36:59 2011 +0200"
      },
      "message": "ALSA: usb-audio: add new quirk type QUIRK_AUDIO_STANDARD_MIXER\n\nThis quirk type will let the driver assume that there is a standard\nmixer on a given interface, or that a specific mixer quirks will handle\nthe device.\n\nSigned-off-by: Daniel Mack \u003czonque@gmail.com\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "88a8516a2128a6d078a106ead48092240e8a138f",
      "tree": "dc839c85a9b2fc2e17759c5a42368cb8300e42bc",
      "parents": [
        "edf7de31c25ce72f163bf7d1fc0d2711869d073c"
      ],
      "author": {
        "name": "Oliver Neukum",
        "email": "oneukum@suse.de",
        "time": "Fri Mar 11 14:51:12 2011 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Mar 11 14:59:29 2011 +0100"
      },
      "message": "ALSA: usbaudio: implement USB autosuspend\n\nDevices are autosuspended if no pcm nor midi channel is open\nMixer devices may be opened. This way they are active when\nin use to play or record sound, but can be suspended while\nusers have a mixer application running.\n\n[Small clean-ups using static inline by tiwai]\n\nSigned-off-by: Oliver Neukum \u003coneukum@suse.de\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "382225e62bdb8059b7f915b133426425516dd300",
      "tree": "25f85ecb38145f3ca1547685066b2bf9057e3c72",
      "parents": [
        "306496761745942d8167e9193a738b559a7fb0b3"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Tue Feb 22 10:21:18 2011 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Wed Feb 23 08:15:43 2011 +0100"
      },
      "message": "ALSA: usb-audio: fix oops due to cleanup race when disconnecting\n\nWhen a USB audio device is disconnected, snd_usb_audio_disconnect()\nkills all audio URBs.  At the same time, the application, after being\nnotified of the disconnection, might close the device, in which case\nALSA calls the .hw_free callback, which should free the URBs too.\n\nCommit de1b8b93a0ba \"[ALSA] Fix hang-up at disconnection of usb-audio\"\nprevented snd_usb_hw_free() from freeing the URBs to avoid a hang that\nresulted from this race, but this introduced another race because the\nURB callbacks could now be executed after snd_usb_hw_free() has\nreturned, and try to access already freed data.\n\nFix the first race by introducing a mutex to serialize the disconnect\ncallback and all PCM callbacks that manage URBs (hw_free and hw_params).\n\nReported-and-tested-by: Pierre-Louis Bossart \u003cpierre-louis.bossart@intel.com\u003e\nCc: \u003cstable@kernel.org\u003e\n[CL: also serialize hw_params callback]\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "c7f572168fc4840727c9bda955b7f103922209cd",
      "tree": "0d0480506cf8d78a77549e9dec15d1d2356a7814",
      "parents": [
        "f3305da35a26def93b476051f4d7b6bc791e561e"
      ],
      "author": {
        "name": "Clemens Ladisch",
        "email": "clemens@ladisch.de",
        "time": "Fri Oct 22 18:20:48 2010 +0200"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Oct 22 18:48:40 2010 +0200"
      },
      "message": "ALSA: usb-audio: add Novation Launchpad support\n\nAdd a quirk entry for the Novation Launchpad USB MIDI controller.\n\nQUIRK_MIDI_FASTLANE gets renamed to *_RAW_BYTES because this quirk type\nis now shared by different devices.\n\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\nTested-by: Jakob Flierl \u003cjakob.flierl@gmail.com\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "79f920fbff566ffc9de44111eb1456a3cef310f0",
      "tree": "97b574ee648320163fcbcf8793b23e826fb3a1f8",
      "parents": [
        "7176d37a28fa4ea7e32815007673f578cdcebf51"
      ],
      "author": {
        "name": "Daniel Mack",
        "email": "daniel@caiaq.de",
        "time": "Mon May 31 14:51:31 2010 +0200"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Mon May 31 18:16:59 2010 +0200"
      },
      "message": "ALSA: usb-audio: parse clock topology of UAC2 devices\n\nAudio devices which comply to the UAC2 standard can export complex clock\ntopologies in its descriptors and set up links between them.\n\nThe entities that are defined are\n\n - clock sources, which define the end-leafs.\n - clock selectors, which act as switch to select one out of many\n   possible clocks sources.\n - clock multipliers, which have an input clock source, and act as clock\n   source again. They can be used to derive one clock from another.\n\nAll sample rate changes, clock validity queries and the like must go to\nclock source elements, while clock selectors and multipliers can be used\nas terminal clock source.\n\nThe following patch adds a parser for these elements and functions to\niterate over the tree and find the leaf nodes (clock sources).\n\nThe samplerate set functions were moved to the new clock.c file.\n\nSigned-off-by: Daniel Mack \u003cdaniel@caiaq.de\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "4434ade8c9334a3ab975d8993de456f06841899e",
      "tree": "a4255010e5118e5da3684a6f0d39b32ba79e9dd3",
      "parents": [
        "ead4046b2fdfd69acc4272e693afd249ad3eb689"
      ],
      "author": {
        "name": "Krzysztof Foltman",
        "email": "wdev@foltman.com",
        "time": "Thu May 20 20:31:10 2010 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri May 21 17:12:30 2010 +0200"
      },
      "message": "ALSA: usb-audio: add support for Akai MPD16\n\nThe decoding/encoding is based on own reverse-engineering. Both control and\ndata ports are handled. Writing to control port supports SysEx events only,\nas this is the only type of messages that MPD16 recognizes.\n\nSigned-off-by: Krzysztof Foltman \u003cwdev@foltman.com\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "e5779998bf8b70e48a6cc208c8b61b33bd6117ea",
      "tree": "512568f0fc4b81eac8019522c10df5b81483bcca",
      "parents": [
        "3e1aebef6fb55e35668d2d7cf608cf03f30c904f"
      ],
      "author": {
        "name": "Daniel Mack",
        "email": "daniel@caiaq.de",
        "time": "Thu Mar 04 19:46:13 2010 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Mar 05 08:17:14 2010 +0100"
      },
      "message": "ALSA: usb-audio: refactor code\n\nClean up the usb audio driver by factoring out a lot of functions to\nseparate files. Code for procfs, quirks, urbs, format parsers etc all\ngot a new home now.\n\nMoved almost all special quirk handling to quirks.c and introduced new\ngeneric functions to handle them, so the exceptions do not pollute the\nwhole driver.\n\nRenamed usbaudio.c to card.c because this is what it actually does now.\nRenamed usbmidi.c to midi.c for namespace clarity.\nRemoved more things from usbaudio.h.\n\nThe non-standard drivers were adopted accordingly.\n\nSigned-off-by: Daniel Mack \u003cdaniel@caiaq.de\u003e\nCc: Clemens Ladisch \u003cclemens@ladisch.de\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "3e1aebef6fb55e35668d2d7cf608cf03f30c904f",
      "tree": "51e92e89e84a67ec7ac177847e66d4b34a646ce3",
      "parents": [
        "bc700ab1407864ebee838de53c9565a394f4da38"
      ],
      "author": {
        "name": "Daniel Mack",
        "email": "daniel@caiaq.de",
        "time": "Thu Mar 04 19:46:12 2010 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Fri Mar 05 08:16:47 2010 +0100"
      },
      "message": "ALSA: usb-audio: header file cleanups\n\nRename snd-usb-lib to snd-usbmidi-lib as MIDI functions are the only\nthing it actually contains. Introduce a new header file to only declare\nthese functions.\n\nIntroduced usbmixer.h for all functions exported by usbmixer.c.\n\nSigned-off-by: Daniel Mack \u003cdaniel@caiaq.de\u003e\nCc: Clemens Ladisch \u003cclemens@ladisch.de\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "156366d31524dc6b88836f06dccb1be13dbef5f1",
      "tree": "5ae1fee7169edd9bebace22394f0777af21fca63",
      "parents": [
        "7f9320d415fab5c05097c77eea7a77f2f6341f24",
        "0a566ec25627bdd360f7294aa2e52f9d121233b4"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Tue Mar 02 11:27:46 2010 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Tue Mar 02 11:27:46 2010 +0100"
      },
      "message": "Merge remote branch \u0027alsa/devel\u0027 into topic/misc\n\nConflicts:\n\tsound/usb/usbaudio.c\n"
    },
    {
      "commit": "e584bc3cf6865e005bbb4dbabae0bf4b3df59500",
      "tree": "0ca057d2bee756f70064185ab4aa834cb6418eba",
      "parents": [
        "291186e049d7f8178ad31d43c38a53889f25d79e"
      ],
      "author": {
        "name": "Clemens Ladisch",
        "email": "clemens@ladisch.de",
        "time": "Mon Mar 01 16:20:37 2010 +0100"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@perex.cz",
        "time": "Mon Mar 01 17:02:38 2010 +0100"
      },
      "message": "ALSA: ua101: add Edirol UA-1000 support\n\nAdd support for the Edirol UA-1000 to the UA-101 driver.\n\nBoth devices behave the same, so we just have to shuffle around some\ninterface numbers and name strings.\n\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@perex.cz\u003e\n"
    },
    {
      "commit": "de48c7bc6f93c6c8e0be8612c9d72a2dc92eaa01",
      "tree": "f27b2849a4f78959f7c448eaaafd7bca8cb8f8ac",
      "parents": [
        "7b8a043f2686af9f41e313a78ed5e98233e5fded"
      ],
      "author": {
        "name": "Daniel Mack",
        "email": "daniel@caiaq.de",
        "time": "Mon Feb 22 23:49:13 2010 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Tue Feb 23 08:51:56 2010 +0100"
      },
      "message": "ALSA: usbaudio: consolidate header files\n\nUse the definitions from linux/usb/audio.h all over the ALSA USB audio\ndriver and add some missing definitions there as well.\n\nUse the endpoint attribute macros from linux/usb/ch9 and remove the own\nthings from sound/usb/usbaudio.h.\n\nNow things are also nicely prefixed which makes understanding the code\neasier.\n\nSigned-off-by: Daniel Mack \u003cdaniel@caiaq.de\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "53ee98fe8ac77d00bacc1c814d450d83cbd193d4",
      "tree": "c7f454b89c1032fe964b847048598c0071d88b1d",
      "parents": [
        "8fee4aff8c89c229593b76a6ab172a9cad24b412"
      ],
      "author": {
        "name": "Daniel Mack",
        "email": "daniel@caiaq.de",
        "time": "Mon Feb 22 23:49:11 2010 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Tue Feb 23 08:40:24 2010 +0100"
      },
      "message": "ALSA: usbaudio: implement basic set of class v2.0 parser\n\nThis adds a number of parsers for audio class v2.0. In particular, the\nfollowing internals are different and now handled by the code:\n\n* the number of streaming interfaces is now reported by an interface\n  association descriptor. The old approach using a proprietary\n  descriptor is deprecated.\n\n* The number of channels per interface is now stored in the AS_GENERAL\n  descriptor (used to be part of the FORMAT_TYPE descriptor).\n\n* The list of supported sample rates is no longer stored in a variable\n  length appendix of the format_type descriptor but is retrieved from\n  the device using a class specific GET_RANGE command.\n\n* Supported sample formats are now reported as 32bit bitmap rather than\n  a fixed value. For now, this is worked around by choosing just one of\n  them.\n\n* A devices needs to have at least one CLOCK_SOURCE descriptor which\n  denotes a clockID that is needed im the class request command.\n\n* Many descriptors (format_type, ...) have changed their layout. Handle\n  this by casting the descriptors to the appropriate structs.\n\nSigned-off-by: Daniel Mack \u003cdaniel@caiaq.de\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "8fee4aff8c89c229593b76a6ab172a9cad24b412",
      "tree": "fa04320ed558000ee0e131808e14698ddd4fe3ce",
      "parents": [
        "28e1b773083d349d5223f586a39fa30f5d0f1c36"
      ],
      "author": {
        "name": "Daniel Mack",
        "email": "daniel@caiaq.de",
        "time": "Mon Feb 22 23:49:10 2010 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Tue Feb 23 08:40:20 2010 +0100"
      },
      "message": "ALSA: usbaudio: introduce new types for audio class v2\n\nThis patch adds some definitions for audio class v2.\n\nUnfortunately, the UNIT types PROCESSING_UNIT and EXTENSION_UNIT have\ndifferent numerical representations in both standards, so there is need\nfor a _V1 add-on now. usbmixer.c is changed accordingly.\n\nSigned-off-by: Daniel Mack \u003cdaniel@caiaq.de\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "52a7a5835173af61b9f6c3038212370d9717526f",
      "tree": "4417f296d3e5a115b7111a2ab5b288df32416169",
      "parents": [
        "98e89f606c38a310a20342f90e0c453e6afadf18"
      ],
      "author": {
        "name": "John S. Gruber",
        "email": "JohnSGruber@gmail.com",
        "time": "Sun Dec 27 12:19:59 2009 -0500"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Mon Dec 28 12:30:57 2009 +0100"
      },
      "message": "ALSA: usb-audio: use usbquirk.h for detection of HVR-950Q/850\n\nDetect the HVR-950Q HVR-850 urb data alignment quirk using usbquirk.h\nrather than using a case statement in snd_usb_audio_probe.\n\nSigned-off-by: John S. Gruber \u003cJohnSGruber@gmail.com\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "98e89f606c38a310a20342f90e0c453e6afadf18",
      "tree": "ed5a677157cf5bdd781c04e986813f112c6bf72c",
      "parents": [
        "adc8d31326c32a2a1e145ab80accbc3c6570b117"
      ],
      "author": {
        "name": "John S. Gruber",
        "email": "JohnSGruber@gmail.com",
        "time": "Sun Dec 27 12:19:58 2009 -0500"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Mon Dec 28 12:30:41 2009 +0100"
      },
      "message": "ALSA: usb-audio: relax urb data align. restriction HVR-950Q and HVR-850 only\n\nAddressing audio quality problem.\n\nIn sound/usb/usbaudio.c, for the Hauppage HVR-950Q and HVR-850 only, change\nretire_capture_urb to allow transfers on audio sub-slot boundaries rather\nthan audio slots boundaries.\n\nWith these devices the left and right channel samples can be split between\ntwo different urbs. Throwing away extra channel samples causes a sound\nquality problem for stereo streams as the left and right channels are\nswapped repeatedly, perhaps many times per second.\n\nUrbs unaligned on sub-slot boundaries are still truncated to the next\nlowest stride (audio slot) to retain synchronization on samples even\nthough left/right channel synchronization may be lost in this case.\n\nDetect the quirk using a case statement in snd_usb_audio_probe.\n\nBugLink: https://bugs.launchpad.net/ubuntu/+bug/495745\n\nSigned-off-by: John S. Gruber \u003cJohnSGruber@gmail.com\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "7d2b451e65d255427c108e990507964ac39c13ee",
      "tree": "86e977405ae88b08fa74dff3202c9f88207dfacb",
      "parents": [
        "44eba3e82b35ae796826a65d8040001582adc10a"
      ],
      "author": {
        "name": "Sergiy Kovalchuk",
        "email": "cnb_zerg@yahoo.com",
        "time": "Sun Dec 27 09:13:41 2009 -0800"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Mon Dec 28 12:29:39 2009 +0100"
      },
      "message": "ALSA: usb-audio - Added functionality for E-mu 0404USB/0202USB/TrackerPre\n\nAdded functionality:\n1) Extension Units support (all XU settings now available at alsamixer,\n   kmix, etc):\n- \"AnalogueIn soft limiter\" switch;\n- \"Sample rate\" selector (values 0,1,2,3,4,5 corresponds to 44.1 48 ...\n  192 kHz);\n- \"DigitalIn CLK source\" selector (internal/external) (**);\n- \"DigitalOut format SPDIF/AC3\" switch (**);\n(**)E-mu-0404usb only.\n\n2) Automatic device sample rate adjustment depending on substream\n   samplerate for both capture and playback substream.\n\n[minor coding-style fixes by tiwai]\n\nSigned-off-by: Sergiy Kovalchuk \u003ccnb_zerg@yahoo.com\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "63978ab3e3e963db28093b53bb4598f2702e1ad7",
      "tree": "fff9fa47e90317b1e5914e0a6f51d8e896760bf0",
      "parents": [
        "0d64b568fcd48b133721c1d322e7c51d85eb12df"
      ],
      "author": {
        "name": "Clemens Ladisch",
        "email": "clemens@ladisch.de",
        "time": "Mon Dec 14 12:48:35 2009 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Mon Dec 14 17:58:13 2009 +0100"
      },
      "message": "sound: add Edirol UA-101 support\n\nAdd experimental support for the Edirol UA-101 audio/MIDI interface.\n\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "d82af9f9aab69e82b86450272588c861364f8879",
      "tree": "725374db87473b6ae0e2ac6f41ca44866affa37b",
      "parents": [
        "96f61d9ade82f3e9503df36809175325e8f5eaca"
      ],
      "author": {
        "name": "Clemens Ladisch",
        "email": "clemens@ladisch.de",
        "time": "Mon Nov 16 12:23:46 2009 +0100"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Tue Nov 24 10:19:59 2009 +0100"
      },
      "message": "sound: usb: make the USB MIDI module more independent\n\nRemove the dependecy from the USB MIDI code on the snd_usb_audio\nstructure.  This allows using the USB MIDI module from another driver\nwithout having to pretend to be the generic USB audio driver.\n\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "f495088210c8b9e20791d995a8210170c68d2deb",
      "tree": "4f18e905dd9a21400d9327c9f79847afa7a95535",
      "parents": [
        "70edc800a39327174d3244f9226ce8cacd01dc91"
      ],
      "author": {
        "name": "Julian Anastasov",
        "email": "ja@ssi.bg",
        "time": "Fri Nov 06 23:44:53 2009 +0200"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Sat Nov 07 09:46:06 2009 +0100"
      },
      "message": "ALSA: usb-audio: fix combine_word problem\n\nFix combine_word problem where first octet is not\nread properly. The only affected place seems to be the\nINPUT_TERMINAL type. Before now, sound controls can be created\nwith the output terminal\u0027s name which is a fallback mechanism\nused only for unknown input terminal types. For example,\nLine can wrongly appear as Speaker. After the change it\nshould appear as Line.\n\n\tThe side effect of this change can be that users\ncan expect the wrong control name in their scripts or\nprograms while now we return the correct one.\n\n\tProbably, these defines should use get_unaligned_le16 and\nfriends.\n\nSigned-off-by: Julian Anastasov \u003cja@ssi.bg\u003e\nCc: \u003cstable@kernel.org\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "55de5ef970c680d8d75f2a9aa7e4f172140dbd9c",
      "tree": "3fed0a032ccc3050ceacbe4f230d1c02cd122f1c",
      "parents": [
        "59a3759d0fe8d969888c741bb33f4946e4d3750d"
      ],
      "author": {
        "name": "Clemens Ladisch",
        "email": "clemens@ladisch.de",
        "time": "Wed May 27 10:49:30 2009 +0200"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Wed May 27 11:25:33 2009 +0200"
      },
      "message": "sound: usb-audio: make the MotU Fastlane work again\n\nKernel 2.6.18 broke the MotU Fastlane, which uses duplicate endpoint\nnumbers in a manner that is not only illegal but also confuses the\nkernel\u0027s endpoint descriptor caching mechanism.  To work around this, we\nhave to add a separate usb_set_interface() call to guide the USB core to\nthe correct descriptors.\n\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\nReported-and-tested-by: David Fries \u003cdavid@fries.net\u003e\nCc: \u003cstable@kernel.org\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "310e0dc01d15f6e792a54f971dc7b1e13d1c6e95",
      "tree": "1d5f9734d5197868cc74ba110be1fe83bbce3ce5",
      "parents": [
        "7a17daae8ed71bf3259d905a4fc48a5b424fa935"
      ],
      "author": {
        "name": "Pedro Lopez-Cabanillas",
        "email": "pedro.lopez.cabanillas@gmail.com",
        "time": "Sat Oct 04 16:27:36 2008 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@perex.cz",
        "time": "Fri Oct 10 13:41:48 2008 +0200"
      },
      "message": "ALSA: snd-usb-audio: support for Edirol UA-4FX device\n\nRenamed the old quirk function for ua-700/ua-25 to become more\ngeneric, moving the MIDI interfaces to the quirk data header.\nAdded a new quirk for the Edirol UA-4FX.\n\nSigned-off-by: Pedro Lopez-Cabanillas \u003cpedro.lopez.cabanillas@gmail.com\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@perex.cz\u003e\n"
    },
    {
      "commit": "7a9b8063cf7d78d7de4f2555357101087548c699",
      "tree": "e52206406078301f572057597ba45eb0a7a413ca",
      "parents": [
        "8a8f2662c535e1dedced896cc68cb8473fd98fa0"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Wed Aug 13 15:40:53 2008 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@perex.cz",
        "time": "Fri Aug 15 11:48:01 2008 +0200"
      },
      "message": "ALSA: usb-audio - Add ignore_ctl_error parameter\n\nAdded the ignore_ctl_error parameter to enable/disable the control-error\nhandling for mixer interfaces.  It was a hard-coded ifdef, and now you\ncan change it more easily.\n\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@perex.cz\u003e\n"
    },
    {
      "commit": "030a07e441296c372f946cd4065b5d831d8dc40c",
      "tree": "4032eba646f9bf1c6f146adc40b449cf50b59a47",
      "parents": [
        "896e6cc20e67038af12e1a7711eef32647e62f23"
      ],
      "author": {
        "name": "Karsten Wiese",
        "email": "fzu@wemgehoertderstaat.de",
        "time": "Wed Jul 30 15:13:29 2008 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@perex.cz",
        "time": "Fri Aug 01 13:37:12 2008 +0200"
      },
      "message": "ALSA: Add USB US122L driver\n\nAdded a new US122L usb-audio driver.  This driver works together with a\ndedicated alsa-lib plugin.\n\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@perex.cz\u003e\n"
    },
    {
      "commit": "f85bf29c9435baf927e1817e6b43c9429b84f822",
      "tree": "9a32fda61aafa0d87a8040c2657fe57dd1c59dcc",
      "parents": [
        "175859bf1602c7ee38d720daa14a287072cc2b72"
      ],
      "author": {
        "name": "Oliver Neukum",
        "email": "oneukum@suse.de",
        "time": "Fri Dec 14 14:42:41 2007 +0100"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@perex.cz",
        "time": "Thu Jan 31 17:29:36 2008 +0100"
      },
      "message": "[ALSA] usb audio suspend support\n\nThis patch implements suspend/resume support for USB audio devices.\nIt works with the microphone in my camera.\n\nSigned-off-by: Oliver Neukum \u003coneukum@suse.de\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@perex.cz\u003e\n"
    },
    {
      "commit": "d0b0fac14edf81dc62615cd757e7c73d2059152c",
      "tree": "fa42567910d6993eac52ce601012a598249cec85",
      "parents": [
        "f32610edab47f36946d23b883aeae91e15986121"
      ],
      "author": {
        "name": "Bjoern Fay",
        "email": "mail@bfay.de",
        "time": "Mon Feb 05 12:27:21 2007 +0100"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Feb 09 09:03:53 2007 +0100"
      },
      "message": "[ALSA] usbaudio - Add support for Edirol UA-101\n\nAdded support for the Edirol UA-101 (only in high-speed mode) by taking\nthe quirks for the UA-1000 and change them accordingly. Changes were\nmade in \u0027usbaudio.c\u0027, \u0027usbaudio.h\u0027, and \u0027usbquirks.h\u0027\nMIDI and recording seem to work perfectly (with JACK), but playback\ngives some few glitches. I think that\u0027s the mentioned\nsynchronizing-problem in the UA-1000 quirk (\u0027FIXME: playback must be\nsynchronized to capture\u0027), so I didn\u0027t change that.\nToDo: Adding Mixer-Support for the built-in\ncontrol-panel/patch-bay/router.\n\nSigned-off-by: Bjoern Fay \u003cmail@bfay.de\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\nSigned-off-by: Jaroslav Kysela \u003cperex@suse.cz\u003e\n"
    },
    {
      "commit": "c4a87ef4de9860d00460dce30776f7cc17e77459",
      "tree": "3cb5fc7db428e75e1c8545f890d76b11390465a2",
      "parents": [
        "1561f09a2f91bc258a72225f919807c9e51c8290"
      ],
      "author": {
        "name": "Ben Williamson",
        "email": "ben.williamson@greyinnovation.com",
        "time": "Mon Jun 19 17:20:09 2006 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Thu Jun 22 21:34:31 2006 +0200"
      },
      "message": "[ALSA] USB midi: Remove duplicate CS_AUDIO_* #defines\n\nRemoved the CS_AUDIO_* #defines, which were duplicates of the\nclass-specific USB_DT_CS_* #defines in \u003clinux/usb_ch9.h\u003e.\n\nSigned-off-by: Ben Williamson \u003cben.williamson@greyinnovation.com\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "cc7a59bd8dcee9b01e0c9ab21380071f0ae6ef0d",
      "tree": "0b0a9b2c18b2a71d7cc9788b78c27e0a849fbd59",
      "parents": [
        "e957ebf164e880ddb0c057418195db47d013c4ac"
      ],
      "author": {
        "name": "Clemens Ladisch",
        "email": "clemens@ladisch.de",
        "time": "Tue Feb 07 17:11:06 2006 +0100"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Wed Mar 22 10:28:22 2006 +0100"
      },
      "message": "[ALSA] usb-audio: rename QUIRK_MIDI_MIDITECH to QUIRK_MIDI_CME\n\nModules: USB generic driver\n\nRename QUIRK_MIDI_MIDITECH to QUIRK_MIDI_CME because Miditech keyboards\nare built by CME and use the same protocol, and don\u0027t force a Miditech\nproduct name for the USB ID used by both Miditech and CME UF-x\nkeyboards.\n\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\n"
    },
    {
      "commit": "86e07d34658bb85b3424f4db64fa28f884edbe8d",
      "tree": "eb6a97b850d12d2f64fa13cd1c436f0735627171",
      "parents": [
        "db13154843cb2c99a93e9feed575e906f6e0e455"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Thu Nov 17 15:08:02 2005 +0100"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Tue Jan 03 12:19:55 2006 +0100"
      },
      "message": "[ALSA] Remove xxx_t typedefs: USB-Audio\n\nModules: USB generic driver\n\nRemove xxx_t typedefs from the USB-Audio driver.\n\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "3527a008cbc51dd23a8bf4927e3ab29423b0d05b",
      "tree": "b5aaab3e8800a3d333e8639f7b4fa59d460fb804",
      "parents": [
        "3cfc1eb181b49dfbfeaf20ebfeb5cd2af4c4c4b5"
      ],
      "author": {
        "name": "Clemens Ladisch",
        "email": "clemens@ladisch.de",
        "time": "Mon Sep 26 10:03:09 2005 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Nov 04 13:16:39 2005 +0100"
      },
      "message": "[ALSA] usb-audio: remove old compatibility wrappers (2/2)\n\nModules: USB generic driver\n\nMove the usb_complete_callback() compatibility wrapper out of the\nkernel tree.\n\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\n"
    },
    {
      "commit": "3cfc1eb181b49dfbfeaf20ebfeb5cd2af4c4c4b5",
      "tree": "c29cd9f00e5877bf138449dad9f770b2fc30231c",
      "parents": [
        "d879f0ccf55a9ac5752b24dc210a446746e3c6da"
      ],
      "author": {
        "name": "Clemens Ladisch",
        "email": "clemens@ladisch.de",
        "time": "Mon Sep 26 10:01:12 2005 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Fri Nov 04 13:16:37 2005 +0100"
      },
      "message": "[ALSA] usb-audio: remove old compatibility wrappers (1/2)\n\nModules: USB generic driver\n\nMove the usb_pipe_needs_resubmit() compatibility wrapper out of the\nkernel tree.\n\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\n"
    },
    {
      "commit": "854af9578cb84e4ca3cb1551a6be40c4e81bb455",
      "tree": "fb09d01b0499451e258a71e9a05246c1e08ea301",
      "parents": [
        "f38275fe994c333b809796230f4f98090f8d919b"
      ],
      "author": {
        "name": "Clemens Ladisch",
        "email": "clemens@ladisch.de",
        "time": "Mon Jul 25 16:19:10 2005 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Thu Jul 28 12:22:41 2005 +0200"
      },
      "message": "[ALSA] usb-audio - change quirk type handling\n\nUSB generic driver\nMake the quirk type an enum instead of a #defined integer, and use a\ntable for the quirk constructor functions instead of a big switch\nstatement.\n\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\n"
    },
    {
      "commit": "f38275fe994c333b809796230f4f98090f8d919b",
      "tree": "1eea6ae95c6e54202e674a66306a8763df924166",
      "parents": [
        "d06e4c4001cf26147a6af0718703368944f0df32"
      ],
      "author": {
        "name": "Clemens Ladisch",
        "email": "clemens@ladisch.de",
        "time": "Mon Jul 25 16:17:29 2005 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Thu Jul 28 12:22:37 2005 +0200"
      },
      "message": "[ALSA] usb-audio - add support for Miditech USB MIDI keyboards\n\nUSB generic driver\nAdd support for Miditech Midistart and MidiStudio keyboards (another\ncase of devices using the standard protocol but having no descriptors).\n\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\n"
    },
    {
      "commit": "6155aff84b98b2aa35eaa4384b539dfbab86afcc",
      "tree": "6a4ea213fd8ecce8784a3ce6c2f6aae9c01d5e86",
      "parents": [
        "b1c6ef52e2623c81c2124801c783a903f6e5437a"
      ],
      "author": {
        "name": "Clemens Ladisch",
        "email": "clemens@ladisch.de",
        "time": "Mon Jul 04 09:20:42 2005 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Thu Jul 28 12:21:41 2005 +0200"
      },
      "message": "[ALSA] usb-audio - rename QUIRK_MIDI_MOTU to QUIRK_MIDI_RAW\n\nUSB generic driver\nRename the protocol used by the MOTU FastLane to \u0027raw\u0027 because it might\nbe useful with other devices, and there are other MOTU interfaces that\ndo not use this protocol.\n\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\n"
    },
    {
      "commit": "27d10f5664c7650af3b2ffadfefaf19b36dc7bd8",
      "tree": "b89c8d639041f460557bf6e9078c7cee7426cd2b",
      "parents": [
        "b259b10c420a59a2fdbcf5a3498253ebcbdffa1e"
      ],
      "author": {
        "name": "Clemens Ladisch",
        "email": "clemens@ladisch.de",
        "time": "Mon May 02 08:51:26 2005 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Sun May 29 10:05:47 2005 +0200"
      },
      "message": "[ALSA] usb-audio - cache vendor/product IDs\n\nUSB generic driver\nCache the decoded values of idVendor/idProduct to get rid of most of\nthose ugly le16_to_cpu() calls.\n\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\n"
    },
    {
      "commit": "84957a8ab086377a025e0448fa716ed5983f3c3a",
      "tree": "7d405711f0fd2e6eb8c305b7bddf0aaeac22f3e4",
      "parents": [
        "707e60732fc25fe3760f916d083b262a86a666c0"
      ],
      "author": {
        "name": "Clemens Ladisch",
        "email": "clemens@ladisch.de",
        "time": "Fri Apr 29 16:23:13 2005 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Sun May 29 10:05:37 2005 +0200"
      },
      "message": "[ALSA] usb-audio - move mixer data into separate struct\n\nUSB generic driver\nMove all data related to audio control interfaces into a separate struct\nlocal to usbmixer.c.\n\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\n"
    },
    {
      "commit": "ee7333970bee3e7565feeb3edfef4db81cbe72e5",
      "tree": "418eb84e58d8d6f85ceafffc03fe37119728987d",
      "parents": [
        "8e062ec7108f8a91149e6bccddc3b7341e406274"
      ],
      "author": {
        "name": "Clemens Ladisch",
        "email": "clemens@ladisch.de",
        "time": "Mon Apr 25 10:34:13 2005 +0200"
      },
      "committer": {
        "name": "Jaroslav Kysela",
        "email": "perex@suse.cz",
        "time": "Sun May 29 10:05:14 2005 +0200"
      },
      "message": "[ALSA] usb-audio - remove superfluous parameter\n\nUSB generic driver,USB USX2Y\nThis patch removes the superfluous driver parameter from the\ndisconnect functions.\n\nSigned-off-by: Clemens Ladisch \u003cclemens@ladisch.de\u003e\n"
    },
    {
      "commit": "1da177e4c3f41524e886b7f1b8a0c1fc7321cac2",
      "tree": "0bba044c4ce775e45a88a51686b5d9f90697ea9d",
      "parents": [],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Sat Apr 16 15:20:36 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Sat Apr 16 15:20:36 2005 -0700"
      },
      "message": "Linux-2.6.12-rc2\n\nInitial git repository build. I\u0027m not bothering with the full history,\neven though we have it. We can create a separate \"historical\" git\narchive of that later if we want to, and in the meantime it\u0027s about\n3.2GB when imported into git - space that would just make the early\ngit days unnecessarily complicated, when we don\u0027t have a lot of good\ninfrastructure for it.\n\nLet it rip!\n"
    }
  ]
}
