)]}'
{
  "log": [
    {
      "commit": "99ce58ddc4eadec8c35d9a1d64ff57703fdcfacc",
      "tree": "9dbe8427ee72d1aa2fce24a53df2723c3745e2be",
      "parents": [
        "56ccd186f1837dd418cd094f0e96b3196bbab9ef",
        "44d27f7dfedd9aadc082cda31462f6600f56e4ec",
        "4e52b538e31d8eca2dde1f01e0685977c19d006e",
        "ed13794925786a64b2a21389d40a09e4012c357d"
      ],
      "author": {
        "name": "Jiri Kosina",
        "email": "jkosina@suse.cz",
        "time": "Tue May 22 11:33:42 2012 +0200"
      },
      "committer": {
        "name": "Jiri Kosina",
        "email": "jkosina@suse.cz",
        "time": "Tue May 22 11:35:11 2012 +0200"
      },
      "message": "Merge branches \u0027upstream-fixes\u0027, \u0027wacom\u0027 and \u0027waltop\u0027 into for-linus\n\nConflicts:\n\tdrivers/hid/hid-core.c\n"
    },
    {
      "commit": "44d27f7dfedd9aadc082cda31462f6600f56e4ec",
      "tree": "66935ad1e6ed841e83e4adbb031a93bbc0cbf5b3",
      "parents": [
        "74b89e8a3625c17c7452532dfb997ac4f1a38751"
      ],
      "author": {
        "name": "Jonathan Nieder",
        "email": "jrnieder@gmail.com",
        "time": "Fri May 11 16:17:16 2012 +0200"
      },
      "committer": {
        "name": "Jiri Kosina",
        "email": "jkosina@suse.cz",
        "time": "Fri May 11 16:31:21 2012 +0200"
      },
      "message": "HID: logitech: read all 32 bits of report type bitfield\n\nOn big-endian systems (e.g., Apple PowerBook), trying to use a\nlogitech wireless mouse with the Logitech Unifying Receiver does not\nwork with v3.2 and later kernels.  The device doesn\u0027t show up in\n/dev/input.  Older kernels work fine.\n\nThat is because the new hid-logitech-dj driver claims the device.  The\ndevice arrival notification appears:\n\n\t20 00 41 02 00 00 00 00 00 00 00 00 00 00 00\n\nand we read the report_types bitfield (02 00 00 00) to find out what\nkind of device it is.  Unfortunately the driver only reads the first 8\nbits and treats that value as a 32-bit little-endian number, so on a\npowerpc the report type seems to be 0x02000000 and is not recognized.\n\nEven on little-endian machines, connecting a media center remote\ncontrol (report type 00 01 00 00) with this driver loaded would\npresumably fail for the same reason.\n\nFix both problems by using get_unaligned_le32() to read all four\nbytes, which is a little clearer anyway.  After this change, the\nwireless mouse works on Hugo\u0027s PowerBook again.\n\nBased on a patch by Nestor Lopez Casado.\nAddresses http://bugs.debian.org/671292\n\nReported-by: Hugo Osvaldo Barrera \u003chugo@osvaldobarrera.com.ar\u003e\nInspired-by: Nestor Lopez Casado \u003cnlopezcasad@logitech.com\u003e\nSigned-off-by: Jonathan Nieder \u003cjrnieder@gmail.com\u003e\nSigned-off-by: Nestor Lopez Casado \u003cnlopezcasad@logitech.com\u003e\nCc: \u003cstable@vger.kernel.org\u003e\nSigned-off-by: Jiri Kosina \u003cjkosina@suse.cz\u003e\n"
    },
    {
      "commit": "2a039bf5a6caa6b41c3839c1e3a19b20fb38270b",
      "tree": "ead38dc1262b0f62063607d08ef354faccdc9df9",
      "parents": [
        "07d9ab4f0e52cb2a383596e5ebbbd20232501393"
      ],
      "author": {
        "name": "Henrik Rydberg",
        "email": "rydberg@euromail.se",
        "time": "Sun Apr 22 14:21:39 2012 +0200"
      },
      "committer": {
        "name": "Jiri Kosina",
        "email": "jkosina@suse.cz",
        "time": "Tue May 01 12:54:53 2012 +0200"
      },
      "message": "HID: hid-logitech: Collect report descriptors before sending\n\nThe current code allows several consecutive calls to hid_parse_report(),\nwhich may have happened to work before, but would cause a memory leak\nand generally be incorrect. This patch collects all the reports\nbefore sending them once.\n\nCc: Nestor Lopez Casado \u003cnlopezcasad@logitech.com\u003e\nTested-by: Benjamin Tissoires \u003cbenjamin.tissoires@gmail.com\nSigned-off-by: Henrik Rydberg \u003crydberg@euromail.se\u003e\nSigned-off-by: Jiri Kosina \u003cjkosina@suse.cz\u003e\n"
    },
    {
      "commit": "765031668fb2b064aebd9a568e5ad794cbe3413a",
      "tree": "2fed59b329bd0cc523c7c98b475dd12121605a4e",
      "parents": [
        "f62f61917d72c1fb0101ad405664f6fc868d676b"
      ],
      "author": {
        "name": "Nestor Lopez Casado",
        "email": "nlopezcasad@logitech.com",
        "time": "Thu Feb 02 10:54:14 2012 +0100"
      },
      "committer": {
        "name": "Jiri Kosina",
        "email": "jkosina@suse.cz",
        "time": "Thu Feb 02 10:54:14 2012 +0100"
      },
      "message": "HID: logitech: fix mask to enable DJ mode\n\nThe user can only experience the bug if she pairs 6 devices to a Unifying\nreceiver. The sixth paired device would not work.\n\nThe value changed is actually a bitmask that enables reporting from each\npaired device. As the sixth bit was not set, the sixth device reports are\nignored by the receiver and never get to the driver.\n\nSigned-off-by: Nestor Lopez Casado \u003cnlopezcasad@logitech.com\u003e\n\n drivers/hid/hid-logitech-dj.c |    2 +-\n 1 files changed, 1 insertions(+), 1 deletions(-)\nSigned-off-by: Jiri Kosina \u003cjkosina@suse.cz\u003e\n"
    },
    {
      "commit": "844580ff63ef4eb19eec4cfd8cd6e0b62d81279f",
      "tree": "09efe63d4917899fd8adb340867f3662f6579895",
      "parents": [
        "534a7b8e10ec55d9f521e68c20dbb3634c25b98a"
      ],
      "author": {
        "name": "Nestor Lopez Casado",
        "email": "nlopezcasad@logitech.com",
        "time": "Tue Sep 20 15:59:03 2011 +0200"
      },
      "committer": {
        "name": "Jiri Kosina",
        "email": "jkosina@suse.cz",
        "time": "Tue Sep 20 16:09:22 2011 +0200"
      },
      "message": "HID: hid-logitech-dj: fix off by one\n\nThere is a bug where a device with index 6 would write out of bounds in\nthe array of paired devices.\nThis patch fixes that problem.\n\nReported-by: Dan Carpenter \u003cdan.carpenter@oracle.com\u003e\nReviewed-by: Benjamin Tissoires \u003cbenjamin.tissoires@gmail.com\u003e\nReviewed-by: Olivier Gay \u003cogay@logitech.com\u003e\nSigned-off-by: Nestor Lopez Casado \u003cnlopezcasad@logitech.com\u003e\nSigned-off-by: Jiri Kosina \u003cjkosina@suse.cz\u003e\n"
    },
    {
      "commit": "534a7b8e10ec55d9f521e68c20dbb3634c25b98a",
      "tree": "b6cbaad7a3fea91ff9cab6c08a2e6c4c5a6ff07f",
      "parents": [
        "8f25229026c89912574558d0a4e36c8fe51b9bb4"
      ],
      "author": {
        "name": "Nestor Lopez Casado",
        "email": "nlopezcasad@logitech.com",
        "time": "Thu Sep 15 11:34:49 2011 +0200"
      },
      "committer": {
        "name": "Jiri Kosina",
        "email": "jkosina@suse.cz",
        "time": "Thu Sep 15 11:34:49 2011 +0200"
      },
      "message": "HID: Add full support for Logitech Unifying receivers\n\nWith this driver, all the devices paired to a single Unifying\nreceiver are exposed to user processes in separated /input/dev\nnodes.\n\nKeyboards with different layouts can be treated differently,\nMultiplayer games on single PC (like home theater PC) can\ndifferentiate input coming from different kbds paired to the\nsame receiver.\n\nUp to now, when Logitech Unifying receivers are connected to a\nLinux based system, a single keyboard and a single mouse are\npresented to the HID Layer, even if the Unifying receiver can\npair up to six compatible devices. The Unifying receiver by default\nmultiplexes all incoming events (from multiple keyboards/mice)\ninto these two.\n\nSigned-off-by: Nestor Lopez Casado \u003cnlopezcasad@logitech.com\u003e\nSigned-off-by: Benjamin Tissoires \u003cbenjamin.tissoires@gmail.com\u003e\nSigned-off-by: Jiri Kosina \u003cjkosina@suse.cz\u003e\n"
    }
  ]
}
