)]}'
{
  "log": [
    {
      "commit": "ffa49f8209ef77ebf2cce0bbc129ca40064b8fb6",
      "tree": "0bf6606630e385912e79c4517874364698c1fd10",
      "parents": [
        "497ad9adf44013dc9054f80c627acc44d4c90d37"
      ],
      "author": {
        "name": "Sujith",
        "email": "Sujith.Manoharan@atheros.com",
        "time": "Thu Apr 01 10:28:23 2010 +0530"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:55:10 2010 -0400"
      },
      "message": "ath9k_hw: Don\u0027t check devid for ath9k_htc\n\nFor USB devices, this check is invalid.\nRemove the check so that new product IDs can be added.\n\nSigned-off-by: Sujith \u003cSujith.Manoharan@atheros.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "497ad9adf44013dc9054f80c627acc44d4c90d37",
      "tree": "9690a124fe37329de7538ff67f4b32dbb56a9924",
      "parents": [
        "32ffb1f4488b0727bcfc67a025becc0db3df7a17"
      ],
      "author": {
        "name": "Sujith",
        "email": "Sujith.Manoharan@atheros.com",
        "time": "Thu Apr 01 10:28:20 2010 +0530"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:55:09 2010 -0400"
      },
      "message": "ath: Add a bus type field\n\nThis can be used to store the bus types ( AHB/PCI/USB ).\n\nSigned-off-by: Sujith \u003cSujith.Manoharan@atheros.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "32ffb1f4488b0727bcfc67a025becc0db3df7a17",
      "tree": "73ad51c785816afe2ab6c17702ad5ce3dd7e9509",
      "parents": [
        "152d530d9edbb08424dc1b6561252597a7932c49"
      ],
      "author": {
        "name": "Felix Fietkau",
        "email": "nbd@openwrt.org",
        "time": "Wed Mar 31 15:41:36 2010 -0700"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:55:09 2010 -0400"
      },
      "message": "ath9k: fix compile error without debug enabled\n\ncommits 8e6f5aa250d6013ec0d66f9f45f376678d3fc4ab and\ndb1a052b73f7c97f9e8b21f3f19a92313ed2acb1 accidentally introduced\ncompile errors that happens when ath9k debug is not enabled.\nThis patch fixes the declaration of the inline stubs to resolve this.\n\nSigned-off-by: Felix Fietkau \u003cnbd@openwrt.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "152d530d9edbb08424dc1b6561252597a7932c49",
      "tree": "2fd5f34a59e76a11bd683cf5dcd925ac09f90533",
      "parents": [
        "3069168c82d65f88e4ac76eda09baff02adfd743"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Wed Mar 31 18:05:37 2010 -0400"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:55:08 2010 -0400"
      },
      "message": "ath9k: remove ah-\u003emask_reg, it\u0027s never used properly\n\nah-\u003emask_reg was used to hold different data throughout the driver.\nath9k_hw_init_interrupt_masks() used it to save the value written to\nAR_IMR.  ath9k_hw_set_interrupts() used it to hold the interrupt mask as\ndefined in enum ath9k_int.  Those masks differ in many bits.\n\nUse ah-\u003eimask instead of ah-\u003emask_reg in ath9k_hw_set_interrupts() and\nath9k_hw_updatetxtriglevel().  That\u0027s what the code was meant to do.\nah-\u003eimask is initialized in ath9k_start(), so we don\u0027t need to\ninitialize it from ah-\u003emask_reg.\n\nOnce it\u0027s done, ah-\u003emask_reg becomes write-only, so it\u0027s replaced with a\nlocal variable in ath9k_hw_init_interrupt_masks().\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\nReported-by: Julia Lawall \u003cjulia@diku.dk\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "3069168c82d65f88e4ac76eda09baff02adfd743",
      "tree": "7f9baf122262459eed84f8742bfa7526ac6ae6d1",
      "parents": [
        "c81494d548d0735f13c04dd2c336cde470d1a5ae"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Wed Mar 31 18:05:31 2010 -0400"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:55:08 2010 -0400"
      },
      "message": "ath9k: move imask from sc to ah\n\nAdd ah variable in the functions that didn\u0027t have it and used sc-\u003eimask.\nReplace sc-\u003esc_ah with ah in those functions.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "c81494d548d0735f13c04dd2c336cde470d1a5ae",
      "tree": "9a22213faa6a35a1f1a1c6466b8a651dc64463fd",
      "parents": [
        "b409894f9d6961bd5feffb86ba1d8dbbebfb5b72"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Wed Mar 31 18:05:25 2010 -0400"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:55:08 2010 -0400"
      },
      "message": "ath9k: rename symbols in enum ath9k_internal_frame_type to avoid confusion\n\nSymbols starting with \"ATH9K_INT\" are also used for interrupt mask.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "b409894f9d6961bd5feffb86ba1d8dbbebfb5b72",
      "tree": "6f421c24ce6cca3c656858e89c9c45e1b2d2a252",
      "parents": [
        "4d66edc8b6c0622ed6df74709de65f70d1ca222f"
      ],
      "author": {
        "name": "Luis de Bethencourt",
        "email": "luisbg@dharma.ireland.sun.com",
        "time": "Wed Mar 31 15:07:48 2010 +0100"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:55:07 2010 -0400"
      },
      "message": "ath: fix coding style/readability in ath/ar9170\n\nThis is a patch to files in ath/ar9170 that fixes a set of warnings\nfound by checkpatch.pl tool. A line over 80 characters, a few empty\nspaces before tab and a few empty characters before a new line.\n\nSigned-off-by: Luis de Bethencourt \u003cluisbg@ubuntu.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "4d66edc8b6c0622ed6df74709de65f70d1ca222f",
      "tree": "207e4e4f4576d4ca63cf5cb0de727eb78c6e5d68",
      "parents": [
        "9e18944601856c04c07dc569b87e9b98e8a9da5f"
      ],
      "author": {
        "name": "Gertjan van Wingerde",
        "email": "gwingerde@gmail.com",
        "time": "Tue Mar 30 23:50:26 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:55:06 2010 -0400"
      },
      "message": "rt2x00: Add wakeup interrupt handler to rt2800pci.\n\nThis is needed to wake up the device automatically for receiving beacons,\nand is required for proper powersave handling.\n\nSigned-off-by: Gertjan van Wingerde \u003cgwingerde@gmail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "9e18944601856c04c07dc569b87e9b98e8a9da5f",
      "tree": "1348c49d43d1846ce09dbe98b1845a795eff4388",
      "parents": [
        "5731858d0047cad309d334c4cd6ccb6199bf28fe"
      ],
      "author": {
        "name": "Gertjan van Wingerde",
        "email": "gwingerde@gmail.com",
        "time": "Tue Mar 30 23:50:25 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:55:06 2010 -0400"
      },
      "message": "rt2x00: Add wakeup interrupt handler to rt61pci.\n\nThis is needed to wake up the device automatically for receiving beacons,\nand is required for proper powersave handling.\n\nSigned-off-by: Gertjan van Wingerde \u003cgwingerde@gmail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "5731858d0047cad309d334c4cd6ccb6199bf28fe",
      "tree": "7fd0c4738843b41a6490a57d20cfea6a6d76ff2a",
      "parents": [
        "8a64c0f6b7ec7f758c4ef445e49f479e27fa2236"
      ],
      "author": {
        "name": "Gertjan van Wingerde",
        "email": "gwingerde@gmail.com",
        "time": "Tue Mar 30 23:50:23 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:52:07 2010 -0400"
      },
      "message": "rt2x00: Disable auto wakeup before waking up device.\n\nIn all drivers ensure that auto wakeup is disabled before waking up the device.\nThis is needed to prevent connection stability issues and problems in waking up\nthe device.\n\nBased upon a patch from Ondrej Zary \u003clinux@rainbow-software.org\u003e\n\nSigned-off-by: Gertjan van Wingerde \u003cgwingerde@gmail.com\u003e\nCc: Ondrej Zary \u003clinux@rainbow-software.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "8a64c0f6b7ec7f758c4ef445e49f479e27fa2236",
      "tree": "291339f33fd32a7076c98d88386b61b2baddc51d",
      "parents": [
        "cfcfe4469cc39625cb8257355c00dd8f35f900aa"
      ],
      "author": {
        "name": "Daniel Mack",
        "email": "daniel@caiaq.de",
        "time": "Tue Apr 06 10:52:44 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:52:06 2010 -0400"
      },
      "message": "libertas/sdio: 8686: set ECSI bit for 1-bit transfers\n\nWhen operating in 1-bit mode, SDAT1 is used as dedicated interrupt line.\nHowever, the 8686 will only drive this line when the ECSI bit is set in\nthe CCCR_IF register.\n\nThanks to Alagu Sankar for pointing me in the right direction.\n\nSigned-off-by: Daniel Mack \u003cdaniel@caiaq.de\u003e\nCc: Alagu Sankar \u003calagusankar@embwise.com\u003e\nCc: Volker Ernst \u003cvolker.ernst@txtr.com\u003e\nCc: Dan Williams \u003cdcbw@redhat.com\u003e\nCc: John W. Linville \u003clinville@tuxdriver.com\u003e\nCc: Holger Schurig \u003chs4233@mail.mn-solutions.de\u003e\nCc: Bing Zhao \u003cbzhao@marvell.com\u003e\nCc: libertas-dev@lists.infradead.org\nCc: linux-wireless@vger.kernel.org\nCc: linux-mmc@vger.kernel.org\nAcked-by: Dan Williams \u003cdcbw@redhat.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "cfcfe4469cc39625cb8257355c00dd8f35f900aa",
      "tree": "fbe2e6b4f118da4ab8791072ea32c57cf298cf00",
      "parents": [
        "0a4528e2ae290104f2c343031976542f93ae229d"
      ],
      "author": {
        "name": "Luis de Bethencourt",
        "email": "luisbg@ubuntu.com",
        "time": "Tue Mar 30 16:44:33 2010 +0100"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:51:04 2010 -0400"
      },
      "message": "ath: fix code readability in regd.c\n\nThis is a patch to the ath/regd.c file that fixes two code\nreadability issues. A space between to separate two defines\nand the indentation inside the ath_redg_is_eeprom_valid\nfunction.\n\nSigned-off-by: Luis de Bethencourt \u003cluisbg@ubuntu.com\u003e\nAcked-by: Luis R. Rodriguez \u003clrodriguez@atheros.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "0a4528e2ae290104f2c343031976542f93ae229d",
      "tree": "d2648a190020b173c1b8e618aa71cdf866b1bb9c",
      "parents": [
        "d211e90e28a074447584729018a39910d691d1a8"
      ],
      "author": {
        "name": "Luis de Bethencourt",
        "email": "luisbg@openshine.com",
        "time": "Mon Mar 29 21:34:39 2010 +0100"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:51:04 2010 -0400"
      },
      "message": "Net: wireless: ath: fix macros coding style issue in hw.c\n\nThis is a patch to the ath/hw.c file that fixes up a warning about\nmacros found by the checkpatch.pl tool, that said that complex values\nshould be enclosed in parenthesis.\n\nSigned-off-by: Luis de Bethencourt \u003cluisbg@ubuntu.com\u003e\nAcked-by: Luis R. Rodriguez \u003clrodriguez@atheros.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "d211e90e28a074447584729018a39910d691d1a8",
      "tree": "e9fb1b7d3265449fdc58783a573f337bcce26500",
      "parents": [
        "a124f3bed79d5fd5f87b09a7569ae6b7da4171d2"
      ],
      "author": {
        "name": "Jouni Malinen",
        "email": "j@w1.fi",
        "time": "Sun Mar 28 22:29:52 2010 -0700"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:49:33 2010 -0400"
      },
      "message": "mac80211: Fix robust management frame handling (MFP)\n\nCommit e34e09401ee9888dd662b2fca5d607794a56daf2 incorrectly removed\nuse of ieee80211_has_protected() from the management frame case and in\npractice, made this validation drop all Action frames when MFP is\nenabled. This should have only been done for frames with Protected\nfield set to zero.\n\nSigned-off-by: Jouni Malinen \u003cj@w1.fi\u003e\nCc: stable@kernel.org\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "a124f3bed79d5fd5f87b09a7569ae6b7da4171d2",
      "tree": "44694c6283672300722ae7096947cf1deb2a6f26",
      "parents": [
        "f18d4463d092162f34a8bd226505627ceeac3e8a",
        "91dd6c27a29f97d81d2f71651d3b6bb55a4c1788"
      ],
      "author": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:37:10 2010 -0400"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Apr 06 16:37:10 2010 -0400"
      },
      "message": "Merge branch \u0027wireless-next-2.6\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi-2.6\n"
    },
    {
      "commit": "f18d4463d092162f34a8bd226505627ceeac3e8a",
      "tree": "e8bef0218d06995a820f41e17fd4dbcfb7864af3",
      "parents": [
        "e3efca0a63b4ac4d8849d37d082a95cf1a75162d"
      ],
      "author": {
        "name": "Luis Correia",
        "email": "luis.f.correia@gmail.com",
        "time": "Sat Apr 03 12:49:53 2010 +0100"
      },
      "committer": {
        "name": "Gertjan van Wingerde",
        "email": "gwingerde@gmail.com",
        "time": "Sat Apr 03 16:04:11 2010 +0200"
      },
      "message": "rt2x00: remove MCU requests for SoC platforms\n\nThe ralink SoC platforms do not have an MCU.\n\nSigned-off-by: Luis Correia \u003cluis.f.correia@gmail.com\u003e\nAcked-by: Ivo van Doorn \u003cIvDoorn@gmail.com\u003e\nSigned-off-by: Gertjan van Wingerde \u003cgwingerde@gmail.com\u003e\n"
    },
    {
      "commit": "91dd6c27a29f97d81d2f71651d3b6bb55a4c1788",
      "tree": "a6406143c82e6bee37cf3f6e2146ba557c5fbe59",
      "parents": [
        "b744cb79aec7d95905943c0bc64699eb02de143b"
      ],
      "author": {
        "name": "Frans Pop",
        "email": "elendil@planet.nl",
        "time": "Wed Mar 24 14:19:58 2010 -0700"
      },
      "committer": {
        "name": "Reinette Chatre",
        "email": "reinette.chatre@intel.com",
        "time": "Fri Apr 02 12:53:54 2010 -0700"
      },
      "message": "iwlwifi: remove trailing space in messages\n\nIncludes minor improvements in debugging messages in iwl-4965.c,\nfunction iwl4965_is_temp_calib_needed().\n\nSigned-off-by: Frans Pop \u003celendil@planet.nl\u003e\nCc: Zhu Yi \u003cyi.zhu@intel.com\u003e\nCc: Reinette Chatre \u003creinette.chatre@intel.com\u003e\nCc: Intel Linux Wireless \u003cilw@linux.intel.com\u003e\nSigned-off-by: Reinette Chatre \u003creinette.chatre@intel.com\u003e\n"
    },
    {
      "commit": "b744cb79aec7d95905943c0bc64699eb02de143b",
      "tree": "f9a45249920097edf6a5a8fc9855a53e682489f2",
      "parents": [
        "d34a5a62da12ffa53b91895d094960b35474f2fc"
      ],
      "author": {
        "name": "Wey-Yi Guy",
        "email": "wey-yi.w.guy@intel.com",
        "time": "Tue Mar 23 11:37:59 2010 -0700"
      },
      "committer": {
        "name": "Reinette Chatre",
        "email": "reinette.chatre@intel.com",
        "time": "Fri Apr 02 12:52:17 2010 -0700"
      },
      "message": "iwlwifi: code cleanup for generic defines\n\nSome defines used by all agn devices, but the definitions were in\niwl-4965-hw.h, move those to iwl-agn-hw.h which is the better place for\nthose.\n\nSigned-off-by: Wey-Yi Guy \u003cwey-yi.w.guy@intel.com\u003e\nSigned-off-by: Reinette Chatre \u003creinette.chatre@intel.com\u003e\n"
    },
    {
      "commit": "d34a5a62da12ffa53b91895d094960b35474f2fc",
      "tree": "1c63d703857c112f9c60d0baa5f774c59cd7ebd0",
      "parents": [
        "6aac74b40d5828c6f6b24974580aa43d7bee905c"
      ],
      "author": {
        "name": "Wey-Yi Guy",
        "email": "wey-yi.w.guy@intel.com",
        "time": "Tue Mar 23 10:17:03 2010 -0700"
      },
      "committer": {
        "name": "Reinette Chatre",
        "email": "reinette.chatre@intel.com",
        "time": "Fri Apr 02 12:52:02 2010 -0700"
      },
      "message": "iwlwifi: deprecate \"iwl4965\" alias support\n\nInternal alias support has been present in module-init-tools for some\ntime, the MODULE_ALIAS(\"iwl4965\") boilerplate aliases can be removed.\n\nSigned-off-by: Wey-Yi Guy \u003cwey-yi.w.guy@intel.com\u003e\nSigned-off-by: Reinette Chatre \u003creinette.chatre@intel.com\u003e\n"
    },
    {
      "commit": "6aac74b40d5828c6f6b24974580aa43d7bee905c",
      "tree": "a2efa613963176e4e2e37e9031cf6be1f579a010",
      "parents": [
        "bed2263feb10ea29b2696030cdec2eea611caf14"
      ],
      "author": {
        "name": "Zhu Yi",
        "email": "yi.zhu@intel.com",
        "time": "Mon Mar 22 19:33:41 2010 -0700"
      },
      "committer": {
        "name": "Reinette Chatre",
        "email": "reinette.chatre@intel.com",
        "time": "Fri Apr 02 12:50:37 2010 -0700"
      },
      "message": "iwlwifi: clear rxq-\u003equeue in queue reset\n\nIn iwl_rx_queue_reset(), we didn\u0027t clear the rxq-\u003equeue[]. This might\ncause the same rxb appears on multiple places in rxq-\u003equeue. Although\nthis won\u0027t cause any problem because of the read and write pointers\nprotection in rxq, we\u0027d better clear it to avoid misleading.\n\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: Reinette Chatre \u003creinette.chatre@intel.com\u003e\n"
    },
    {
      "commit": "bed2263feb10ea29b2696030cdec2eea611caf14",
      "tree": "885142133f876cb7962012ecbfc557e0fe02f14c",
      "parents": [
        "2b068618031a91929c21410069f872178ec00329"
      ],
      "author": {
        "name": "Wey-Yi Guy",
        "email": "wey-yi.w.guy@intel.com",
        "time": "Mon Mar 22 14:42:03 2010 -0700"
      },
      "committer": {
        "name": "Reinette Chatre",
        "email": "reinette.chatre@intel.com",
        "time": "Fri Apr 02 12:50:27 2010 -0700"
      },
      "message": "iwlwifi: remove irrelevant comments\n\nRemoving irrelevant comments from iwl-agn.c\n\nSigned-off-by: Wey-Yi Guy \u003cwey-yi.w.guy@intel.com\u003e\nSigned-off-by: Reinette Chatre \u003creinette.chatre@intel.com\u003e\n"
    },
    {
      "commit": "2b068618031a91929c21410069f872178ec00329",
      "tree": "61eafb23a3eed75005d856e3701d068435f569f3",
      "parents": [
        "e3efca0a63b4ac4d8849d37d082a95cf1a75162d"
      ],
      "author": {
        "name": "Wey-Yi Guy",
        "email": "wey-yi.w.guy@intel.com",
        "time": "Mon Mar 22 09:17:39 2010 -0700"
      },
      "committer": {
        "name": "Reinette Chatre",
        "email": "reinette.chatre@intel.com",
        "time": "Fri Apr 02 12:50:06 2010 -0700"
      },
      "message": "iwlwifi: merge module parameters into single place\n\nModule parameters used to be defined in both iwl-5000.c and iwl-4965.c,\nafter the code re-structure, merge into iwl-agn.c for easy to read and\nmaintenance.\n\nNumber of module parameters are deprecated after this merge. These are also\nscheduled for removal by 2.6.40.\n\nThe current supported parameters are:\n\n parm: debug50:50XX debug output mask (deprecated) (uint)\n parm: debug:debug output mask (uint)\n parm: swcrypto50:using crypto in software (default 0 [hardware])\n(deprecated) (bool)\n parm: swcrypto:using crypto in software (default 0 [hardware]) (int)\n parm: queues_num50:number of hw queues in 50xx series (deprecated)\n(int)\n parm: queues_num:number of hw queues. (int)\n parm: 11n_disable50:disable 50XX 11n functionality (deprecated) (int)\n parm: 11n_disable:disable 11n functionality (int)\n parm: amsdu_size_8K50:enable 8K amsdu size in 50XX series (deprecated)\n(int)\n parm: amsdu_size_8K:enable 8K amsdu size (int)\n parm: fw_restart50:restart firmware in case of error (deprecated) (int)\n parm: fw_restart:restart firmware in case of error (int)\n parm: disable_hw_scan:disable hardware scanning (default 0) (int)\n\nRemove \"antenna\" module parameter, it is not being used in \"agn\" driver.\n\nSigned-off-by: Wey-Yi Guy \u003cwey-yi.w.guy@intel.com\u003e\nSigned-off-by: Reinette Chatre \u003creinette.chatre@intel.com\u003e\n"
    },
    {
      "commit": "e3efca0a63b4ac4d8849d37d082a95cf1a75162d",
      "tree": "5c4e47e62d97fb16ce9447b9514d6773c347dcc0",
      "parents": [
        "9fd1ea428590cf6e35e5a7df32ff6bccfd371db2"
      ],
      "author": {
        "name": "Jouni Malinen",
        "email": "j@w1.fi",
        "time": "Sun Mar 28 22:31:15 2010 -0700"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:52:15 2010 -0400"
      },
      "message": "mac80211: Fix drop_unencrypted for MFP with hwaccel\n\nCommit bef5d1c70d132145c0fc75b3586a19841a9a82e4 split\nieee80211_drop_unencrypted() into separate functions that are used for\nData and Management frames. However, it did not handle the\nRX_FLAG_DECRYPTED correctly for Management frames:\nieee80211_drop_unencrypted() can only return 0 for Management frames,\nso there is no point in calling it here. Instead, just check the\nstatus-\u003eflag directly.\n\nSigned-off-by: Jouni Malinen \u003cj@w1.fi\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "9fd1ea428590cf6e35e5a7df32ff6bccfd371db2",
      "tree": "47487758fe3be7219285dde319659922f7baaa48",
      "parents": [
        "879999cec9489f8942ebce3ec1b5f23ef948dda7"
      ],
      "author": {
        "name": "Frans Pop",
        "email": "elendil@planet.nl",
        "time": "Wed Mar 24 19:46:31 2010 +0100"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:51:37 2010 -0400"
      },
      "message": "wireless/ipw2x00: remove trailing space in messages\n\nSigned-off-by: Frans Pop \u003celendil@planet.nl\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "879999cec9489f8942ebce3ec1b5f23ef948dda7",
      "tree": "7eaeb70e0b0f5a81aad162764e163b8b0e7588f5",
      "parents": [
        "f9ea3eb44218b0e12a190f222400f8d56136915f"
      ],
      "author": {
        "name": "Christian Lamparter",
        "email": "chunkeey@googlemail.com",
        "time": "Tue Mar 23 21:51:14 2010 +0100"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:50:51 2010 -0400"
      },
      "message": "ar9170usb: fix panic triggered by undersized rxstream buffer\n\nWhile ar9170\u0027s USB transport packet size is currently set to 8KiB,\nthe PHY is capable of receiving AMPDUs with up to 64KiB.\nSuch a large frame will be split over several rx URBs and\nexceed the previously allocated space for rx stream reconstruction.\n\nThis patch increases the buffer size to 64KiB which is\nin fact the phy \u0026 rx stream designed size limit.\n\nCc: stable@kernel.org\nBugzilla: https://bugzilla.kernel.org/show_bug.cgi?id\u003d15591\nReported-by: Christian Mehlis \u003cmehlis@inf.fu-berlin.de\u003e\nSigned-off-by: Christian Lamparter \u003cchunkeey@googlemail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "f9ea3eb44218b0e12a190f222400f8d56136915f",
      "tree": "83c251acb78977d947c27a3982dc1414197701ba",
      "parents": [
        "d5d9de024c157a3dfbab191241c5c51e4d4c069a"
      ],
      "author": {
        "name": "Joe Perches",
        "email": "joe@perches.com",
        "time": "Thu Mar 18 18:29:34 2010 -0700"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:49:12 2010 -0400"
      },
      "message": "include/net/iw_handler.h: Use SIOCIWFIRST not SIOCSIWCOMMIT in comment\n\nto match use in IW_IOCTL_IDX macro\n\nSigned-off-by: Joe Perches \u003cjoe@perches.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "d5d9de024c157a3dfbab191241c5c51e4d4c069a",
      "tree": "f05c33d67881e5a08a5650a5202602d1edcfb987",
      "parents": [
        "932d37c094b3c3410b4059f18f3b5c756bff059a"
      ],
      "author": {
        "name": "Marco Porsch",
        "email": "marco.porsch@siemens.com",
        "time": "Tue Mar 30 10:00:16 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:49:12 2010 -0400"
      },
      "message": "nl80211: reenable station del for mesh\n\niw dev \u003cdevname\u003e station del \u003cMAC address\u003e is quiet useful in mesh mode and should be possible.\n\nSigned-off-by: Marco Porsch \u003cmarco.porsch@siemens.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "932d37c094b3c3410b4059f18f3b5c756bff059a",
      "tree": "69ed4e5754337d8769e395f4cd9b39fcb1f64abc",
      "parents": [
        "fa83a2189870cdcd6fb4deeed391e0b988dc9a19"
      ],
      "author": {
        "name": "Jouni Malinen",
        "email": "j@w1.fi",
        "time": "Mon Mar 29 23:37:36 2010 -0700"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:42 2010 -0400"
      },
      "message": "ath9k: Do not indicate RX_FLAG_DECRYPTED for unprotected frames\n\nmac80211 skips drop_unencrypted checks if the driver/firmware has\nalready taken care of this. In case of ath9k, we must not indicate\nthat the frame was decrypted if no decryption was actually done.\n\nSigned-off-by: Jouni Malinen \u003cj@w1.fi\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "fa83a2189870cdcd6fb4deeed391e0b988dc9a19",
      "tree": "b8bd693448ce691cd2948e69178f0adfa271d2e2",
      "parents": [
        "ecbcd3243651ae8ac2b73a96c320992a4cf01c5b"
      ],
      "author": {
        "name": "Jouni Malinen",
        "email": "j@w1.fi",
        "time": "Mon Mar 29 23:36:15 2010 -0700"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:42 2010 -0400"
      },
      "message": "mac80211: Fix dropping of unprotected robust multicast frames\n\nWhen selecting the RX key for group-addressed robust management\nframes, we do not actually select any BIP key if the frame is\nunprotected (since we cannot find the key index from MMIE). This\nresults in the drop_unencrypted check in failing to drop the frame. It\nis enough to verify that we have a STA entry for the transmitter and\nthat MFP is enabled for that STA; we do not need to check rx-\u003ekey\nhere. This fixes BIP processing for unprotected, group-addressed,\nrobust management frames.\n\nSigned-off-by: Jouni Malinen \u003cj@w1.fi\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "ecbcd3243651ae8ac2b73a96c320992a4cf01c5b",
      "tree": "6bdb7da8ea5bdbffca4eb9246162e84dbc6b2b67",
      "parents": [
        "e69e95dbecfb73f76765cdd16dadc6219a9068e3"
      ],
      "author": {
        "name": "Jouni Malinen",
        "email": "j@w1.fi",
        "time": "Mon Mar 29 23:35:23 2010 -0700"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:42 2010 -0400"
      },
      "message": "mac80211: Fix BIP to be used only with group-addressed frames\n\nBIP (part of IEEE 802.11w) is only supposed to be used with\ngroup-addressed frames. We ended up picking it as a default mechanism\nfor every management whenever we did not have a STA entry for the\ndestination (e.g., for Probe Response to a STA that is not\nassociated). While the extra MMIE in the end of management frames\nshould not break frames completed in most cases, there is no point in\ndoing this. Fix key selection to pick the default management key only\nif the frame is sent to multicast/broadcast address and the frame is a\nrobust management frame.\n\nSigned-off-by: Jouni Malinen \u003cj@w1.fi\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "e69e95dbecfb73f76765cdd16dadc6219a9068e3",
      "tree": "9af5a6e3c3fbf70f9451b23e5c2f471b44672067",
      "parents": [
        "17e4ec147f4939ca8c81b41b4261ec7974531381"
      ],
      "author": {
        "name": "Jouni Malinen",
        "email": "j@w1.fi",
        "time": "Mon Mar 29 23:29:31 2010 -0700"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:42 2010 -0400"
      },
      "message": "mac80211: Send deauth/disassoc prior to dropping STA entry\n\nWhen management frame protection (IEEE 802.11w) is used, the\ndeauthentication and disassociation frames must be protected whenever\nthe encryption keys are configured. We were removing the STA entry and\nwith it, the keys, just before actually sending out these frames which\nmeant that the frames went out unprotected. The AP will drop them in\nsuch a case. Fix this by reordering the operations a bit so that\nsta_info_destroy_addr() gets called only after\nieee80211_send_deauth_disassoc().\n\nSigned-off-by: Jouni Malinen \u003cj@w1.fi\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "17e4ec147f4939ca8c81b41b4261ec7974531381",
      "tree": "8066952a1dbef6656ac1f6d6a869326576b5006e",
      "parents": [
        "32fbccafed7e935432b601f0453c2b702a385a25"
      ],
      "author": {
        "name": "Jouni Malinen",
        "email": "j@w1.fi",
        "time": "Mon Mar 29 23:28:30 2010 -0700"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:42 2010 -0400"
      },
      "message": "mac80211: Track Beacon signal strength and implement cqm events\n\nCalculate a running average of the signal strength reported for Beacon\nframes and indicate cqm events if the average value moves below or\nabove the configured threshold value (and filter out repetitive events\nwith by using the configured hysteresis).\n\nSigned-off-by: Jouni Malinen \u003cj@w1.fi\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "32fbccafed7e935432b601f0453c2b702a385a25",
      "tree": "212c7ba1e0fd15dcb2dabe5367c7029525c763b1",
      "parents": [
        "29bffa96e9bef4fb84740a49e93d5bd6ca126bac"
      ],
      "author": {
        "name": "Sujith",
        "email": "Sujith.Manoharan@atheros.com",
        "time": "Tue Mar 30 08:48:27 2010 +0530"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:41 2010 -0400"
      },
      "message": "ath9k_htc: Fix TKIP encryption\n\nSet IEEE80211_HW_RX_INCLUDES_FCS to indicate that\nthe FCS is present in RX frames. Also, remove a redundant\nassignment of skb length and include the FCS_LEN\nwhen checking padding.\n\nFixing this issue makes TKIP work.\n\nSigned-off-by: Sujith \u003cSujith.Manoharan@atheros.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "29bffa96e9bef4fb84740a49e93d5bd6ca126bac",
      "tree": "acfa30d0f0568457e70317dd8315a141dda2e6eb",
      "parents": [
        "8e6f5aa250d6013ec0d66f9f45f376678d3fc4ab"
      ],
      "author": {
        "name": "Felix Fietkau",
        "email": "nbd@openwrt.org",
        "time": "Mon Mar 29 20:14:23 2010 -0700"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:41 2010 -0400"
      },
      "message": "ath9k: allocate tx and rx status information on stack\n\nath_tx_status and ath_rx_status data are only necessary for a short\ntime, until they have been processed and converted into mac80211 data\nstructures.\nBecause of that, it makes no sense to keep them tied to the DMA\ndescriptor, that only wastes precious memory.\nThis patch allocates the data on stack in the functions that call the\nconversion functions from ath9k_hw.\n\nSigned-off-by: Felix Fietkau \u003cnbd@openwrt.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "8e6f5aa250d6013ec0d66f9f45f376678d3fc4ab",
      "tree": "be379f3c3ea007c3f239b5043242db29143937c3",
      "parents": [
        "db1a052b73f7c97f9e8b21f3f19a92313ed2acb1"
      ],
      "author": {
        "name": "Felix Fietkau",
        "email": "nbd@openwrt.org",
        "time": "Mon Mar 29 20:09:27 2010 -0700"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:41 2010 -0400"
      },
      "message": "ath9k: split out access to rx status information\n\nThis patch passes in a pointer to the ath_rx_status data structure for\nfunctions that need it, instead of letting them grab it directly from\nthe ath_desc struct. This is useful for making it possible to allocate\nthe intermediate rx status data separately.\n\nSigned-off-by: Felix Fietkau \u003cnbd@openwrt.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "db1a052b73f7c97f9e8b21f3f19a92313ed2acb1",
      "tree": "47bb94db727c4ec11d6eb9cfdba5a89f5833eb68",
      "parents": [
        "e65054b64ff6b89380a7f546c9eebf862e679646"
      ],
      "author": {
        "name": "Felix Fietkau",
        "email": "nbd@openwrt.org",
        "time": "Mon Mar 29 20:07:11 2010 -0700"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:41 2010 -0400"
      },
      "message": "ath9k: split out access to tx status information\n\nThis patch passes in a pointer to the ath_tx_status data structure for\nfunctions that need it, instead of letting them grab it directly from\nthe ath_desc struct. This is useful for making it possible to allocate\nthe intermediate tx status data separately.\n\nSigned-off-by: Felix Fietkau \u003cnbd@openwrt.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "e65054b64ff6b89380a7f546c9eebf862e679646",
      "tree": "9fa1800b9a2bc589b560f081979d599b52b08eac",
      "parents": [
        "9f01a84e81d10e38daa504348217895fe414a24b"
      ],
      "author": {
        "name": "Zhu Yi",
        "email": "yi.zhu@intel.com",
        "time": "Tue Mar 30 09:36:16 2010 +0800"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:40 2010 -0400"
      },
      "message": "ipw2200: restart adapter only when abort_scan doesn\u0027t work\n\nWhen a scan watchdog is fired, try to send abort scan command\nfirst before restarting the adapter. This avoids reconnection for\nsome users when scan hang is detected.\n\nThis fixed bug https://bugzilla.kernel.org/show_bug.cgi?id\u003d15419\n\nReported-by: Maurizio Avogadro \u003cmavoga@gmail.com\u003e\nTested-by: Maurizio Avogadro \u003cmavoga@gmail.com\u003e\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "9f01a84e81d10e38daa504348217895fe414a24b",
      "tree": "a75515fb837989c5e4748cf44ba675cf8a270d40",
      "parents": [
        "7757dfed5809b03aa61c7d7f5ff8092f85df8583"
      ],
      "author": {
        "name": "Sujith",
        "email": "Sujith.Manoharan@atheros.com",
        "time": "Mon Mar 29 16:07:20 2010 +0530"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:40 2010 -0400"
      },
      "message": "ath9k_htc: Initialize HW opmode\n\nNot setting the opmode properly during initialization\nresults in the firmware sending up a bunch of packets\nbefore add_interface() has been called, for the first\ninterface.\n\nThis patch fixes the issue by setting the initial mode\nto \u0027managed\u0027.\n\nSigned-off-by: Sujith \u003cSujith.Manoharan@atheros.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "7757dfed5809b03aa61c7d7f5ff8092f85df8583",
      "tree": "ae855421010956814bca1917dc6e1fb42c3c19ac",
      "parents": [
        "6335ed0ff8670e6378da41191ab8bda33d1b7ac8"
      ],
      "author": {
        "name": "Sujith",
        "email": "Sujith.Manoharan@atheros.com",
        "time": "Mon Mar 29 16:07:17 2010 +0530"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:40 2010 -0400"
      },
      "message": "ath9k_htc: Handle TX queue overflow\n\nStop/restart TX queues when the internal SKB\nqueue is full. This helps handle TX better\nunder heavy load.\n\nSigned-off-by: Sujith \u003cSujith.Manoharan@atheros.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "6335ed0ff8670e6378da41191ab8bda33d1b7ac8",
      "tree": "345a5ba1c2bb8c602343d196f577b2d714d4f711",
      "parents": [
        "d5a4c5e3afb9697c8f627b2563f4b8583ef88498"
      ],
      "author": {
        "name": "Sujith",
        "email": "Sujith.Manoharan@atheros.com",
        "time": "Mon Mar 29 16:07:15 2010 +0530"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:39 2010 -0400"
      },
      "message": "ath9k_htc: Simplify RX URB management\n\nThis patch introduces the usage of URB anchors,\nthus reducing a large amount of code dealing with\nURB maintenance within the driver. The RX callback now\ntakes care of freeing the SKB associated with each URB.\n\nSigned-off-by: Sujith \u003cSujith.Manoharan@atheros.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "d5a4c5e3afb9697c8f627b2563f4b8583ef88498",
      "tree": "ae63c42f7b1cdb898f65376883edda9567d51ae8",
      "parents": [
        "ef98c3cd9b68ed27eeb94b833f74860fa1a734b7"
      ],
      "author": {
        "name": "Sujith",
        "email": "Sujith.Manoharan@atheros.com",
        "time": "Mon Mar 29 16:07:14 2010 +0530"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:39 2010 -0400"
      },
      "message": "ath9k_htc: Fix watchdog pattern parsing\n\nSkip beyond the watchdog pattern properly.\nThis fixes occasional failure of the driver to load.\n\nSigned-off-by: Sujith \u003cSujith.Manoharan@atheros.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "ef98c3cd9b68ed27eeb94b833f74860fa1a734b7",
      "tree": "635dd6c83de38e8f3cc9c469ab1a4eb6f46d032a",
      "parents": [
        "0995d110118b35c0dc5195e3ddddcc0dec263830"
      ],
      "author": {
        "name": "Sujith",
        "email": "Sujith.Manoharan@atheros.com",
        "time": "Mon Mar 29 16:07:11 2010 +0530"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:39 2010 -0400"
      },
      "message": "ath9k_htc: Fix bug in aggregation initiation\n\nAccessing the sta pointer in TX completion without\napproprate RCU protection is wrong. Fix this.\n\nAlso, RCU protection is needed when the station\u0027s\naggregation state is updated. Handle this properly.\n\nSigned-off-by: Sujith \u003cSujith.Manoharan@atheros.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "0995d110118b35c0dc5195e3ddddcc0dec263830",
      "tree": "ddacae9fa13fd209fa1090ea7d513cb8a29293a1",
      "parents": [
        "0af26b278bc1d747370b451595b7586cb7b3455c"
      ],
      "author": {
        "name": "Sujith",
        "email": "Sujith.Manoharan@atheros.com",
        "time": "Mon Mar 29 16:07:09 2010 +0530"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:39 2010 -0400"
      },
      "message": "ath9k_common: Move RX filter code to ath9k_htc\n\nThe calculation of RX filter is fairly different\nbetween ath9k and ath9k_htc, trying to make this\ncommon between the two drivers would result in code churn.\n\nWhile at it, remove the handling of PSPOLL filter,\nit can be added when(if) AP support is added to ath9k_htc.\n\nSigned-off-by: Sujith \u003cSujith.Manoharan@atheros.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "0af26b278bc1d747370b451595b7586cb7b3455c",
      "tree": "2e82d68e3c3f3f873cf855e7cec60de1759d7823",
      "parents": [
        "e61146e36b40fd9d346118c40285913236c329f3"
      ],
      "author": {
        "name": "Stanislaw Gruszka",
        "email": "sgruszka@redhat.com",
        "time": "Mon Mar 29 12:18:36 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:38 2010 -0400"
      },
      "message": "mac80211: enable QoS explicitly in AP mode\n\nEnable QoS explicitly, when user space AP program will setup a QoS\nqueues. Currently this is not needed as iwlwifi not work in AP mode\nand no other driver implement enable/disable QoS.\n\nSigned-off-by: Stanislaw Gruszka \u003csgruszka@redhat.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "e61146e36b40fd9d346118c40285913236c329f3",
      "tree": "d98781250a92062e519798b69b0e0e8966ae259c",
      "parents": [
        "e1b3ec1a2a336c328c336cfa5485a5f0484cc90d"
      ],
      "author": {
        "name": "Stanislaw Gruszka",
        "email": "sgruszka@redhat.com",
        "time": "Mon Mar 29 12:18:35 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:46:38 2010 -0400"
      },
      "message": "iwlwifi: manage QoS by mac stack\n\nWe activate/deactivate QoS and setup default queue parameters in iwlwifi\ndriver. Mac stack do the same, so we do not need repeat that work here.\nStack also will tell when disable QoS, this will fix driver when working\nwith older APs, that do not have QoS implemented.\n\nPatch make \"force \u003d true\" in iwl_active_qos() assuming we always want\nto do with QoS what mac stack wish.\n\nPatch also remove unused qos_cap bits, do not initialize qos_active \u003d 0,\nas we have it initialized to zero by kzalloc.\n\nSigned-off-by: Stanislaw Gruszka \u003csgruszka@redhat.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "e1b3ec1a2a336c328c336cfa5485a5f0484cc90d",
      "tree": "9a71f61f773231fd439220bec60977f45e1ef65f",
      "parents": [
        "ecdf94b81237d272b1514b76f27a5d22782bcaa6"
      ],
      "author": {
        "name": "Stanislaw Gruszka",
        "email": "sgruszka@redhat.com",
        "time": "Mon Mar 29 12:18:34 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:43:59 2010 -0400"
      },
      "message": "mac80211: explicitly disable/enable QoS\n\nAdd interface to disable/enable QoS (aka WMM or WME). Currently drivers\nenable it explicitly when -\u003econf_tx method is called, and newer disable.\nDisabling is needed for some APs, which do not support QoS, such\nwe should send QoS frames to them.\n\nSigned-off-by: Stanislaw Gruszka \u003csgruszka@redhat.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "ecdf94b81237d272b1514b76f27a5d22782bcaa6",
      "tree": "53487ff42cf5f183faae9b9a8693c60eef8aae7d",
      "parents": [
        "e3cf8b3f7b9eefbe1d39b160726d6e5c2cbb4c5d"
      ],
      "author": {
        "name": "Zhu Yi",
        "email": "yi.zhu@intel.com",
        "time": "Mon Mar 29 16:42:26 2010 +0800"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:43:58 2010 -0400"
      },
      "message": "iwlwifi: remove skb_linearize for rx frames\n\nRemove skb_linearize() in the iwlwifi drivers since\nmac80211 supports paged rx SKBs now.\n\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "e3cf8b3f7b9eefbe1d39b160726d6e5c2cbb4c5d",
      "tree": "c59a6fcb8d0bcd88d848785a3dbe3978d1568274",
      "parents": [
        "e58b1253f1e850b4469964d7b92cf230196223c0"
      ],
      "author": {
        "name": "Zhu Yi",
        "email": "yi.zhu@intel.com",
        "time": "Mon Mar 29 17:35:07 2010 +0800"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:34 2010 -0400"
      },
      "message": "mac80211: support paged rx SKBs\n\nMac80211 drivers can now pass paged SKBs to mac80211 via\nieee80211_rx{_irqsafe}. The implementation currently use\nskb_linearize() in a few places i.e. management frame\nhandling, software decryption, defragmentation and A-MSDU\nprocess. We will optimize them one by one later.\n\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nCc: Kalle Valo \u003ckalle.valo@iki.fi\u003e\nCc: Johannes Berg \u003cjohannes@sipsolutions.net\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "e58b1253f1e850b4469964d7b92cf230196223c0",
      "tree": "0145ddd422c49ad69732381e281db43b022d92c1",
      "parents": [
        "f19ebe7d772a3b48743fa798ad979a4ee3cb64e2"
      ],
      "author": {
        "name": "Rafał Miłecki",
        "email": "zajec5@gmail.com",
        "time": "Mon Mar 29 00:53:16 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:19 2010 -0400"
      },
      "message": "b43: N-PHY: fix value written on 2055 radio setup\n\nSigned-off-by: Rafał Miłecki \u003czajec5@gmail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "f19ebe7d772a3b48743fa798ad979a4ee3cb64e2",
      "tree": "7f0216e4dc449edda0f2d6b7a8676ddb53cbf594",
      "parents": [
        "ffd2d9bdac1a0a5d3184e085ea1bd3060b4166fe"
      ],
      "author": {
        "name": "Rafał Miłecki",
        "email": "zajec5@gmail.com",
        "time": "Mon Mar 29 00:53:15 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:19 2010 -0400"
      },
      "message": "b43: N-PHY: prepare for rev3+ channel tables\n\nSigned-off-by: Rafał Miłecki \u003czajec5@gmail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "ffd2d9bdac1a0a5d3184e085ea1bd3060b4166fe",
      "tree": "71a5a7a04080ae6c9f93e823abb4a6df69e6be1a",
      "parents": [
        "b15b3039919c7357c2851ec66843ff92f8ff86aa"
      ],
      "author": {
        "name": "Rafał Miłecki",
        "email": "zajec5@gmail.com",
        "time": "Mon Mar 29 00:53:14 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:18 2010 -0400"
      },
      "message": "b43: N-PHY: find table entry earlier for setting chanspec\n\nWe do not want to partially change chanspec just to find out there is not\nentry in table for given channel.\n\nSigned-off-by: Rafał Miłecki \u003czajec5@gmail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "b15b3039919c7357c2851ec66843ff92f8ff86aa",
      "tree": "882f3f5b094ecd8874e1697e09857d9ad030a055",
      "parents": [
        "d817f4e18cf54ae7d662cf2f33e51685e81ad254"
      ],
      "author": {
        "name": "Rafał Miłecki",
        "email": "zajec5@gmail.com",
        "time": "Mon Mar 29 00:53:13 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:18 2010 -0400"
      },
      "message": "b43: N-PHY: use b43_phy_n_sfo_cfg rather than duplicating same fields\n\nSigned-off-by: Rafał Miłecki \u003czajec5@gmail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "d817f4e18cf54ae7d662cf2f33e51685e81ad254",
      "tree": "d6c2e7224b41f496ce8792ed65c35f39520605f8",
      "parents": [
        "f01a0229b0343d56b2e084f1472ff3edc1a2090b"
      ],
      "author": {
        "name": "Rafał Miłecki",
        "email": "zajec5@gmail.com",
        "time": "Mon Mar 29 00:53:12 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:18 2010 -0400"
      },
      "message": "b43: N-PHY: some dummy PHY rev 3 calls\n\nSigned-off-by: Rafał Miłecki \u003czajec5@gmail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "f01a0229b0343d56b2e084f1472ff3edc1a2090b",
      "tree": "3501c68d1c9429bc84f9aecaaed359df7f296d88",
      "parents": [
        "6424bf700c1851fc7e86b83959a8578a401d80c1"
      ],
      "author": {
        "name": "Xose Vazquez Perez",
        "email": "xose.vazquez@gmail.com",
        "time": "Sun Mar 28 20:02:41 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:18 2010 -0400"
      },
      "message": "wireless: rt2x00: rt2800usb: new ids\n\nTaken from latest ralink linux driver(RT3070_LinuxSTA_V2.3.0.1_20100208)\nAll of them are RT3070 devices.\n\nSigned-off-by: Xose Vazquez Perez \u003cxose.vazquez@gmail.com\u003e\nAcked-by: Ivo van Doorn \u003cIvDoorn@gmail.com\u003e\nAcked-by: Gertjan van Wingerde \u003cgwingerde@gmail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "6424bf700c1851fc7e86b83959a8578a401d80c1",
      "tree": "80db1a005c44bda2134558706570a0cd4fe4d980",
      "parents": [
        "27427013504d98f86f9baebfb8a44db3ce61f65e"
      ],
      "author": {
        "name": "Xose Vazquez Perez",
        "email": "xose.vazquez@gmail.com",
        "time": "Sun Mar 28 17:48:05 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:17 2010 -0400"
      },
      "message": "wireless: rt2x00: rt2800pci: new id\n\nTaken from latest ralink linux driver, it\u0027s a RT3593 PCI/PCIe.\n\nSigned-off-by: Xose Vazquez Perez \u003cxose.vazquez@gmail.com\u003e\nAcked-by: Ivo van Doorn \u003cIvDoorn@gmail.com\u003e\nAcked-by: Gertjan van Wingerde \u003cgwingerde@gmail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "27427013504d98f86f9baebfb8a44db3ce61f65e",
      "tree": "3fd1faa17399075e9540bf057b400cdd2d446162",
      "parents": [
        "fc3f14873d38a5c8a280ff4b8c8abde0244fb79b"
      ],
      "author": {
        "name": "Xose Vazquez Perez",
        "email": "xose.vazquez@gmail.com",
        "time": "Sun Mar 28 16:57:32 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:17 2010 -0400"
      },
      "message": "wireless: rt2x00: rt2800usb: delete id\n\nIt was removed in the windows inf file by ralink.\nAnd it isn\u0027t on ralink linux drivers.\n\nSigned-off-by: Xose Vazquez Perez \u003cxose.vazquez@gmail.com\u003e\nAcked-by: Ivo van Doorn \u003cIvDoorn@gmail.com\u003e\nAcked-by: Gertjan van Wingerde \u003cgwingerde@gmail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "fc3f14873d38a5c8a280ff4b8c8abde0244fb79b",
      "tree": "d33e7a588e2be79ba491f0b43adde53a2c374ef3",
      "parents": [
        "bc0f03ea579d78f845a44a0c611806da64057b03"
      ],
      "author": {
        "name": "Xose Vazquez Perez",
        "email": "xose.vazquez@gmail.com",
        "time": "Sun Mar 28 15:52:43 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:17 2010 -0400"
      },
      "message": "wireless: rt2x00: rt2800usb: identify ids-chips\n\nTaken from ralink linux drivers:\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x0B05,0x1784)}, /* Asus 3072 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x13D3,0x3305)}, /* AzureWave 3070*/\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x07D1,0x3C16)}, /* D-Link 3070 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x203D,0x14A9)}, /* Encore 3070*/\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x1740,0x9707)}, /* EnGenius 3070 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x1740,0x9708)}, /* EnGenius 3071 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x1740,0x9709)}, /* EnGenius 3072 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x04BB,0x0947)}, /* I-O DATA 3070 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x04BB,0x0948)}, /* I-O DATA 3072 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x0DB0,0x3822)}, /* MSI 3070 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x0DB0,0x3821)}, /* Ralink 3070 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x0DB0,0x3870)}, /* MSI 3070*/\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x0DB0,0x3871)}, /* MSI 3070 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x0DB0,0x821A)}, /* Ralink 3070 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x0DB0,0x822A)}, /* MSI 3070 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x0DB0,0x870A)}, /* MSI 3070*/\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x0DB0,0x871A)}, /* MSI 3070 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x0DB0,0x899A)}, /* MSI 3070*/\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x20B8,0x8888)}, /* PARA INDUSTRIAL 3070 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x0DF6,0x0048)}, /* Sitecom 3070 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x0DF6,0x0047)}, /* Sitecom 3071 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x083A,0xA701)}, /* SMC 3070 */\nRT3070_LinuxSTA_V2.3.0.1_20100208/common/rtusb_dev_id.c:        {USB_DEVICE(0x083A,0xA702)}, /* SMC 3072 */\n\nSigned-off-by: Xose Vazquez Perez \u003cxose.vazquez@gmail.com\u003e\nAcked-by: Ivo van Doorn \u003cIvDoorn@gmail.com\u003e\nAcked-by: Gertjan van Wingerde \u003cgwingerde@gmail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "bc0f03ea579d78f845a44a0c611806da64057b03",
      "tree": "5baea9ca27c4e2558487e9d594ab00cf7db96dd6",
      "parents": [
        "c18995540cc4d2c84d130581b8b6720b22ca16b5"
      ],
      "author": {
        "name": "Saravanan Dhanabal",
        "email": "ext-saravanan.dhanabal@nokia.com",
        "time": "Fri Mar 26 12:53:33 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:16 2010 -0400"
      },
      "message": "wl1271: Fix msleep() delay while waiting for completion\n\nAfter last transmission, the device goes to sleep earlier\nthan the configured dynamic power save timeout. If timeout\nis set to 400ms, device enters into sleep mode at around\n330ms since from last TX.\n\nThis patch removes the msleep(1), which causes the delay\nafter ELP wakeup. Replaced with udelay(10), the variation\nis around 7-10ms.\n\nSigned-off-by: Saravanan Dhanabal \u003cext-saravanan.dhanabal@nokia.com\u003e\nReviewed-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "c18995540cc4d2c84d130581b8b6720b22ca16b5",
      "tree": "0acb4eb3863c70bfbffd355b36346aac552f2598",
      "parents": [
        "bfb24c9e16921f0e57fcec5180ffa20929832545"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:32 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:16 2010 -0400"
      },
      "message": "wl1271: Enable hardware keep alive messages\n\nThis patch will enable the hardware keep-alive mode, configure the required\ntemplate, configure keep-alive parameters, and re-order JOIN\u0027s and ACX_AID\nin such a way that the keep-alive is activated.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "bfb24c9e16921f0e57fcec5180ffa20929832545",
      "tree": "efe695fedc1c879524ba3948bf65bb97b26cfdfa",
      "parents": [
        "a9af092b524614dd3fc7b52bde7c87f8b82cd2a6"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:31 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:16 2010 -0400"
      },
      "message": "wl1271: Add keep-alive frame template support\n\nAdd support for keep-alive templates, which are indexed.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "a9af092b524614dd3fc7b52bde7c87f8b82cd2a6",
      "tree": "d7a7d548d432404c5d8d4ac61797559648747b36",
      "parents": [
        "d60772f646f70ba0a72c9a300935df8fad256ff9"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:30 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:16 2010 -0400"
      },
      "message": "wl1271: Configure HW connection monitor\n\nThis patch configures the mac80211 to not perform connection monitoring\n(periodic probe-requests) and instead rely on the hardware to do it.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "d60772f646f70ba0a72c9a300935df8fad256ff9",
      "tree": "c0a3046485f212a7bbed8acc5dc9a3266b0dee11",
      "parents": [
        "c2b2d99bb0b5a9445ff8b845f6acd5046ef5815e"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:29 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:15 2010 -0400"
      },
      "message": "wl1271: Disconnect if PSM entry fails\n\nIf PSM entry fails despite of retries, assume that the AP has been lost,\nand indicate connection loss to the mac80211. This is much safer than\nremaining in active mode.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "c2b2d99bb0b5a9445ff8b845f6acd5046ef5815e",
      "tree": "46617c3510cc66947c9f1e501091d8145c894ef7",
      "parents": [
        "cbf7f3058ea17d9413a6889c3a229e8eac7a7c78"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:28 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:15 2010 -0400"
      },
      "message": "wl1271: Configure probe-request template when associated\n\nConfigure a probe-request template to the wl1271 when associated - the\nwl1271 will use this to attempt to recover a connection when beacon loss\nis detected.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "cbf7f3058ea17d9413a6889c3a229e8eac7a7c78",
      "tree": "fee31dc54bd0b9ddfe6967d2aaa376aa39bc9203",
      "parents": [
        "64e29e447ec01d2130b4c68f3459cfaa94fa138b"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:27 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:15 2010 -0400"
      },
      "message": "wl1271: Fix memory leak in firmware crash scenario\n\nThe driver tx-queue flush operation leaks broadcast-frames. This leak occurs\nif the driver is shut down while there are frames in TX buffers (such as in\na firmware crash scenario.) Fix the leak.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Teemu Paasikivi \u003cext-teemu.3.paasikivi@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "64e29e447ec01d2130b4c68f3459cfaa94fa138b",
      "tree": "791f2952fcff74cbcfd2d225fc3b18ebdabc8f46",
      "parents": [
        "60e84c2ebb7b04361cf1ba0d325cc93366bd04a6"
      ],
      "author": {
        "name": "Teemu Paasikivi",
        "email": "ext-teemu.3.paasikivi@nokia.com",
        "time": "Fri Mar 26 12:53:26 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:15 2010 -0400"
      },
      "message": "wl1271: Removed checking of PSM from handling BSS_LOST_EVENT\n\nChange the driver to call ieee80211_beacon_loss function always when\nBSS_LOST_EVENT is received. Reason for the change is that entering PSM\nmight fail before driver receives BSS_LOST_EVENT. In such case the\ndriver would disable PSM and the stack would not be notified about beacon\nloss and connection loss detection would be delayed by tens of seconds.\n\nSigned-off-by: Teemu Paasikivi \u003cext-teemu.3.paasikivi@nokia.com\u003e\nReviewed-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "60e84c2ebb7b04361cf1ba0d325cc93366bd04a6",
      "tree": "bbe48b596b33bdb009cd8215b7d0e653b92d8425",
      "parents": [
        "5da11dcde3d2a91688e02f032062fa26877eacb0"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:25 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:15 2010 -0400"
      },
      "message": "wl1271: Update beacon interval properly for ad-hoc\n\nConfigure the hardware beacon interval to whatever requested by the\nmac80211.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Teemu Paasikivi \u003cext-teemu.3.paasikivi@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "5da11dcde3d2a91688e02f032062fa26877eacb0",
      "tree": "194f71f76ba3047f1aa97ce4394079230d5f36b9",
      "parents": [
        "6ccbb92ead9379d7de2cc25cd950d15a8d22e0c9"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:24 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:14 2010 -0400"
      },
      "message": "wl1271: Fix ad-hoc mode handling\n\nFix the driver to better reflect the ad-hoc related configuration from the\nmac80211.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Teemu Paasikivi \u003cext-teemu.3.paasikivi@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "6ccbb92ead9379d7de2cc25cd950d15a8d22e0c9",
      "tree": "51c618b5c033cde8317f62a1763259047d8ff4ce",
      "parents": [
        "e7942235f2496587cb4af86168e54d588ffcbd4f"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:23 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:14 2010 -0400"
      },
      "message": "wl1271: Disable connection monitoring while not associated\n\nThe wl1271 does not support disabling the connection monitor feature.\nPerform the next best thing by increasing the beacon-loss threshold and\nBSS_LOSE event timeout to the maximum values.\n\nThis is needed, because we really don\u0027t want any random probe-requests during\nscanning or especially while in ad-hoc mode and not beaconing.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Teemu Paasikivi \u003cext-teemu.3.paasikivi@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "e7942235f2496587cb4af86168e54d588ffcbd4f",
      "tree": "26f4cac69575d3573d6675cd334360ef77ff592b",
      "parents": [
        "2f826f55404ca43efced94d548356182820e764f"
      ],
      "author": {
        "name": "Luciano Coelho",
        "email": "luciano.coelho@nokia.com",
        "time": "Fri Mar 26 12:53:22 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:14 2010 -0400"
      },
      "message": "wl1271: remove deprecated usage of RX status noise\n\nThe noise element in the ieee80211_rx_status struct has been deprecated in\ncommit \"mac80211: deprecate RX status noise\".  Remove the usage of this\nelement from wl1271_rx.c to avoid warnings.\n\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nReviewed-by: Teemu Paasikivi \u003cext-teemu.3.paasikivi@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "2f826f55404ca43efced94d548356182820e764f",
      "tree": "3b819742784a1d2a529c08fda28488df25b04658",
      "parents": [
        "99d84c1de8fdf5f9b09f07fdbc628857a040bf8b"
      ],
      "author": {
        "name": "Luciano Coelho",
        "email": "luciano.coelho@nokia.com",
        "time": "Fri Mar 26 12:53:21 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:14 2010 -0400"
      },
      "message": "wl1271: wait for disconnect command complete event\n\nWait for the DISCONNECT_EVENT_COMPLETE_ID event after sending a disconnect\ncommand.\n\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nReviewed-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "99d84c1de8fdf5f9b09f07fdbc628857a040bf8b",
      "tree": "1ac0570e5c04f9d581ede7ee8931e8995497b0f7",
      "parents": [
        "9560134ff929a037f0c967ae47089586f4b34390"
      ],
      "author": {
        "name": "Luciano Coelho",
        "email": "luciano.coelho@nokia.com",
        "time": "Fri Mar 26 12:53:20 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:13 2010 -0400"
      },
      "message": "wl1271: wait for join command complete event\n\nPoll for join command completion instead of waiting blindly for 10 msecs.\nThere is a timeout of 100 msecs, if the command doesn\u0027t complete by then, we\nreturn an error code.\n\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nReviewed-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "9560134ff929a037f0c967ae47089586f4b34390",
      "tree": "fbd3706bc2f375da912559bece1dc83d43acb579",
      "parents": [
        "259da430b198fc7e6f21e33be3a2d6dd27200953"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:19 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:13 2010 -0400"
      },
      "message": "wl1271: Remove device MAC-address randomization\n\nThis patch removes the MAC address randomization from the driver. This removes\na nasty Nokia-OUI dependency from the driver.\n\nWith this patch, unless an address is explicitly configured to the driver\nby the user, only a zero address will be configured, and the driver will be\nunable to start.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Teemu Paasikivi \u003cext-teemu.3.paasikivi@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "259da430b198fc7e6f21e33be3a2d6dd27200953",
      "tree": "439f01e2e0a803e8f702f45869ac0ca0310e900b",
      "parents": [
        "1b00f2b560028a68cdbc57a0352163afd79822dd"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:18 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:13 2010 -0400"
      },
      "message": "wl1271: Update busyword checking mechanism\n\nAfter the busy-words, if the firmware did not complete by the end of the\nfirst (fixed) busy-word, a flip of the CS line is required to enable clocking\nout the actual read data.\n\nThis patch changes the mechanism such that the CS line is flipped after each\nbusyword.\n\nAlso, the busy-word mechanism is finally enabled, and the number of fixed\nbusywords reduced to the minimum.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Teemu Paasikivi \u003cext-teemu.3.paasikivi@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "1b00f2b560028a68cdbc57a0352163afd79822dd",
      "tree": "905e14f41424b5ce6ab5bcb79d48f0adc9268fd7",
      "parents": [
        "99e50314d588673353bf94978938bd1c2437037d"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:17 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:13 2010 -0400"
      },
      "message": "wl1271: Fix memory leak in cmd_data_path\n\nFix a trivial memory leak in cmd_data_path.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Teemu Paasikivi \u003cext-teemu.3.paasikivi@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "99e50314d588673353bf94978938bd1c2437037d",
      "tree": "6b372eb31bfcfd65e6e270a0dead16955ec824fc",
      "parents": [
        "9d4e5bb3dec8c4b9245035bf29628071801041a8"
      ],
      "author": {
        "name": "Teemu Paasikivi",
        "email": "ext-teemu.3.paasikivi@nokia.com",
        "time": "Fri Mar 26 12:53:16 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:13 2010 -0400"
      },
      "message": "wl1271: Warnings caused by wrong format specifiers fixed\n\nThere were wrong format specifiers in wl1271_sdio.c in some debug\noutputs. This has been causing warnings on some platforms.\n\nSigned-off-by: Teemu Paasikivi \u003cext-teemu.3.paasikivi@nokia.com\u003e\nReviewed-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "9d4e5bb3dec8c4b9245035bf29628071801041a8",
      "tree": "3ba38b2d17cb3be5a63753ce7c7e6edebb49c2e5",
      "parents": [
        "9cea461fb0a37dae9ef0a83714c5fcdc4b2074c8"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:15 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:12 2010 -0400"
      },
      "message": "wl1271: Configure clock-request drive mode to open-drain\n\nThis patch configures the wl1271 chipset clock-request line to be\ndriver in open-drain mode instead of push-pull.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "9cea461fb0a37dae9ef0a83714c5fcdc4b2074c8",
      "tree": "ed73acccef1bc8b8f3083516231e28fdbeb40be8",
      "parents": [
        "f83cce3551a6238f6c86495ed949b31303c21a6d"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:14 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:12 2010 -0400"
      },
      "message": "wl1271: Fix memory leak in scan command handling\n\nThis patch fixes a memory leak in the scan command handling code.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Kalle Valo \u003ckalle.valo@iki.fi\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "f83cce3551a6238f6c86495ed949b31303c21a6d",
      "tree": "d0fae46f47f47f3b88965c01f4746614175805af",
      "parents": [
        "31627dc59b4a87c4198b4245a7de1b8ccf4424fa"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:13 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:11 2010 -0400"
      },
      "message": "wl1271: Fix memory leaks in SPI initialization\n\nThis patch fixes two memory leaks in the SPI initialization code.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Kalle Valo \u003ckalle.valo@iki.fi\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "31627dc59b4a87c4198b4245a7de1b8ccf4424fa",
      "tree": "a7ded2c4c2b539cf672fa1d75b5feda07a36a597",
      "parents": [
        "f876bb9aafc71d8ea395eec99666faaffec5df49"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:12 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:11 2010 -0400"
      },
      "message": "wl1271: Add TX rate reporting\n\nAdd reporting of the used TX rate to mac80211 in the tx_status.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Kalle Valo \u003ckalle.valo@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "f876bb9aafc71d8ea395eec99666faaffec5df49",
      "tree": "db19cff09cdb3ffe237c8031b00788a4c79d8192",
      "parents": [
        "7fdd50d07fed198b2c6ccdca96ab5537014597d8"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Fri Mar 26 12:53:11 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:11 2010 -0400"
      },
      "message": "wl1271: Clean up RX rate reporting\n\nClean up the code to convert a firmware rate class index into an index\nfor the rate configuration table.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nReviewed-by: Kalle Valo \u003ckalle.valo@nokia.com\u003e\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "7fdd50d07fed198b2c6ccdca96ab5537014597d8",
      "tree": "dba0f40e669c2a4d9363a069f24233281a124526",
      "parents": [
        "a8c944f8a00dcc4ac6900efcddab1a0cf300c791"
      ],
      "author": {
        "name": "Luciano Coelho",
        "email": "luciano.coelho@nokia.com",
        "time": "Fri Mar 26 12:53:10 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:10 2010 -0400"
      },
      "message": "wl1271: fix wl1271_spi driver name\n\nWhen forward porting some patches to upstream, there was a mistake and the\nwl1271_spi driver name remained, erroneously, as \"wl1271\".  This patch fixes\nthat.\n\nSigned-off-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "a8c944f8a00dcc4ac6900efcddab1a0cf300c791",
      "tree": "94dd655f078c6f4dc1ec924e110ad33813268dbe",
      "parents": [
        "da35111ad970081bdf6e848d1861c7d16e71079b"
      ],
      "author": {
        "name": "Bruno Randolf",
        "email": "br1@einfach.org",
        "time": "Thu Mar 25 14:49:47 2010 +0900"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:10 2010 -0400"
      },
      "message": "ath5k: add capability flag for phyerror counters\n\nChipsets since revision AR5213A (0x59) have hardware counters for PHY errors\nwhich we can read directly from the registers. Older hardware has to use the RX\ndescriptor status to get a count of PHY errors. This will be used in several\nplaces in the ANI implementation, so a flag is useful.\n\nSigned-off-by: Bruno Randolf \u003cbr1@einfach.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "da35111ad970081bdf6e848d1861c7d16e71079b",
      "tree": "2cdb7d166f14d89526dfb6dbf2a33b5b060b0edc",
      "parents": [
        "495391d715a310a7cbf622850e372d40ac86ef6e"
      ],
      "author": {
        "name": "Bruno Randolf",
        "email": "br1@einfach.org",
        "time": "Thu Mar 25 14:49:42 2010 +0900"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:10 2010 -0400"
      },
      "message": "ath5k: update phy errors codes\n\nUpdate PHY error codes from the HAL, and keep them in statistics for debugging\nvia the \u0027frameerrors\u0027 file. This will also be used by ANI.\n\nSigned-off-by: Bruno Randolf \u003cbr1@einfach.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "495391d715a310a7cbf622850e372d40ac86ef6e",
      "tree": "7da16c9d9fea88c9fdbeabc839d4d8380fc317ab",
      "parents": [
        "9d332c82b4cf2e4538450e4af40f073cc5e599ec"
      ],
      "author": {
        "name": "Bruno Randolf",
        "email": "br1@einfach.org",
        "time": "Thu Mar 25 14:49:36 2010 +0900"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:09 2010 -0400"
      },
      "message": "ath5k: simplify MIB counters\n\nLet\u0027s keep MIB counter statistics in our own statistics structure and only\nconvert it to ieee80211_low_level_stats when needed by mac80211. Also we don\u0027t\nneed to read profile count registers in the MIB interrupt (they don\u0027t trigger\nMIB interrupts).\n\nSigned-off-by: Bruno Randolf \u003cbr1@einfach.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "9d332c82b4cf2e4538450e4af40f073cc5e599ec",
      "tree": "5f07027012ce74788f1df785f5b393d09f4485fa",
      "parents": [
        "b4ea449df90684035985a77763fd1d2ff0eb9dad"
      ],
      "author": {
        "name": "Bruno Randolf",
        "email": "br1@einfach.org",
        "time": "Thu Mar 25 14:49:31 2010 +0900"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:09 2010 -0400"
      },
      "message": "ath5k: initialize default noise floor\n\nInitialize noise floor variable with a default of -95. This was used\nuninitialized in the signal strength (RSSI -\u003e dBm) conversion until the first\nnoise floor calibration was completed.\n\nSigned-off-by: Bruno Randolf \u003cbr1@einfach.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "b4ea449df90684035985a77763fd1d2ff0eb9dad",
      "tree": "4b156d174efda2a11ca7fba59a59617ab3b7de14",
      "parents": [
        "6a8a3f6b2ac02fb8542f2b36b0ecd9c48f7d9a7e"
      ],
      "author": {
        "name": "Bruno Randolf",
        "email": "br1@einfach.org",
        "time": "Thu Mar 25 14:49:25 2010 +0900"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:09 2010 -0400"
      },
      "message": "ath5k: keep beacon RSSI average\n\nKeep an exponentially weighted moving average of the beacon RSSI in our BSS.\nIt will be used by the ANI implementation.\n\nThe averaging algorithm is copied from rt2x00, Thanks :)\n\nSigned-off-by: Bruno Randolf \u003cbr1@einfach.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "6a8a3f6b2ac02fb8542f2b36b0ecd9c48f7d9a7e",
      "tree": "c59903366deb8d8517df9fa7d95da0d7b685d334",
      "parents": [
        "a9167f96428b832bf94c89908e000e16c4eb7d5b"
      ],
      "author": {
        "name": "Bruno Randolf",
        "email": "br1@thinktube.com",
        "time": "Thu Mar 25 14:49:19 2010 +0900"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:09 2010 -0400"
      },
      "message": "ath5k: move ath5k_hw_calibration_poll to base.c\n\nIt\u0027s not a phy related funtion; It has more to do with the interrupt handler\nand tasklet scheduling, so it belongs to base.c.\n\nSigned-off-by: Bruno Randolf \u003cbr1@einfach.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "a9167f96428b832bf94c89908e000e16c4eb7d5b",
      "tree": "1bde9db61684f3a2aa979c56d80b9e2e3e4fc7a9",
      "parents": [
        "e65e1d7713da89d98f01c3f4267b2c9ecb03c16f"
      ],
      "author": {
        "name": "Bruno Randolf",
        "email": "br1@einfach.org",
        "time": "Thu Mar 25 14:49:14 2010 +0900"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:09 2010 -0400"
      },
      "message": "ath5k: optimize ath5k_hw_calibration_poll\n\nOptimize ath5k_hw_calibration_poll() since it is called on every singe\ninterrupt.\n\nSigned-off-by: Bruno Randolf \u003cbr1@einfach.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "e65e1d7713da89d98f01c3f4267b2c9ecb03c16f",
      "tree": "4df0ab05508bf9d55b7a065dc284861ed0685da9",
      "parents": [
        "1063b176c072b936c43d0e6270168b19881ecb72"
      ],
      "author": {
        "name": "Bruno Randolf",
        "email": "br1@einfach.org",
        "time": "Thu Mar 25 14:49:09 2010 +0900"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:08 2010 -0400"
      },
      "message": "ath5k: remove the use of SWI interrupt\n\nWe don\u0027t need to generate a software interrupt (SWI) just to schedule a tasklet\n- we can just schedule the tasklet directly.\n\nRename constants, names, etc to reflect the fact that we don\u0027t use SWI any more.\n\nAlso move the flag handling into the tasklet and prepare it to behave correctly\nwhen there are multiple flags present.\n\nSigned-off-by: Bruno Randolf \u003cbr1@einfach.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "1063b176c072b936c43d0e6270168b19881ecb72",
      "tree": "4d820873db5ce8a8182ebf4bf7f877cc334be886",
      "parents": [
        "0e354fd01e4513cea25d66e9c6d9e76f7228accc"
      ],
      "author": {
        "name": "Bruno Randolf",
        "email": "br1@einfach.org",
        "time": "Thu Mar 25 14:49:03 2010 +0900"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:08 2010 -0400"
      },
      "message": "ath5k: remove static calibration interval variable\n\nRemove static variable ath5k_calinterval which was used as a constant. Use a\n#define instead. Also we don\u0027t need ah_cal_intval.\n\nSigned-off-by: Bruno Randolf \u003cbr1@einfach.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "0e354fd01e4513cea25d66e9c6d9e76f7228accc",
      "tree": "1095417a74e6b36949828b9d2abd9f796da1da72",
      "parents": [
        "cb01b09c6914ab04dc836941dc92a1dd42714e19"
      ],
      "author": {
        "name": "Frans Pop",
        "email": "elendil@planet.nl",
        "time": "Wed Mar 24 19:46:35 2010 +0100"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:08 2010 -0400"
      },
      "message": "wireless/libertas: remove trailing space in debugfs header\n\nSigned-off-by: Frans Pop \u003celendil@planet.nl\u003e\nCc: libertas-dev@lists.infradead.org\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "cb01b09c6914ab04dc836941dc92a1dd42714e19",
      "tree": "b6ba2b9b58f61a69088187e57bbae6c4381cc505",
      "parents": [
        "4a89852c3533c0190cbe6b04b8b5d7bf4f9beea9"
      ],
      "author": {
        "name": "Frans Pop",
        "email": "elendil@planet.nl",
        "time": "Wed Mar 24 19:46:34 2010 +0100"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:07 2010 -0400"
      },
      "message": "wireless/raylink: remove trailing space in messages\n\nSigned-off-by: Frans Pop \u003celendil@planet.nl\u003e\nCc: Corey Thomas \u003ccoreythomas@charter.net\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "4a89852c3533c0190cbe6b04b8b5d7bf4f9beea9",
      "tree": "4e3da09d6f81e1d85dcaf7529f599a9a89814424",
      "parents": [
        "55f98938b5cea8949077c79813c4f86ef0018858"
      ],
      "author": {
        "name": "Frans Pop",
        "email": "elendil@planet.nl",
        "time": "Wed Mar 24 19:46:33 2010 +0100"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:39:07 2010 -0400"
      },
      "message": "wireless/prism54: remove trailing space in messages\n\nSigned-off-by: Frans Pop \u003celendil@planet.nl\u003e\nCc: Luis R. Rodriguez \u003cmcgrof@gmail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "55f98938b5cea8949077c79813c4f86ef0018858",
      "tree": "41cd00bc85a26387eadd831b9770ac59d10286a4",
      "parents": [
        "d28667f871991e0eea983b398421b8db2c8bdf8c"
      ],
      "author": {
        "name": "Frans Pop",
        "email": "elendil@planet.nl",
        "time": "Wed Mar 24 19:46:29 2010 +0100"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 31 14:38:51 2010 -0400"
      },
      "message": "wireless: remove trailing space in messages\n\nAlso correct indentation in net/wireless/reg.c.\n\nSigned-off-by: Frans Pop \u003celendil@planet.nl\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "d28667f871991e0eea983b398421b8db2c8bdf8c",
      "tree": "baeb7ca506966102456cfb3363a07bf377910173",
      "parents": [
        "6e8cc38d5b05bb812f89a35bd9bf52405e67d0df"
      ],
      "author": {
        "name": "Wey-Yi Guy",
        "email": "wey-yi.w.guy@intel.com",
        "time": "Fri Mar 19 11:54:49 2010 -0700"
      },
      "committer": {
        "name": "Reinette Chatre",
        "email": "reinette.chatre@intel.com",
        "time": "Thu Mar 25 11:22:32 2010 -0700"
      },
      "message": "iwlwifi: avoid device type checking in generic code\n\nAvoid checking for specified device type to perform certain function,\nswitch to .cfg approach as more generic and better implementation\nmethod.\n\nSigned-off-by: Wey-Yi Guy \u003cwey-yi.w.guy@intel.com\u003e\nSigned-off-by: Reinette Chatre \u003creinette.chatre@intel.com\u003e\n"
    },
    {
      "commit": "6e8cc38d5b05bb812f89a35bd9bf52405e67d0df",
      "tree": "315cec6bbf580bdbc0e5c8dad06dfeb9da2313c5",
      "parents": [
        "6c69d121676761b2a85282df796af9c3f8c99b64"
      ],
      "author": {
        "name": "Wey-Yi Guy",
        "email": "wey-yi.w.guy@intel.com",
        "time": "Fri Mar 19 10:36:09 2010 -0700"
      },
      "committer": {
        "name": "Reinette Chatre",
        "email": "reinette.chatre@intel.com",
        "time": "Thu Mar 25 11:22:08 2010 -0700"
      },
      "message": "iwlwifi: change spin_lock to spin_lock_irqsave\n\nUse spin_lock_irqsave() in interrupt handler to disable interrupts locally\nand provide the spinlock on SMP. This covers both interrupt and SMP\nconcurrency.\n\nWith this changes, also fix the sparse warning issues.\n\nSigned-off-by: Wey-Yi Guy \u003cwey-yi.w.guy@intel.com\u003e\nAcked-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: Reinette Chatre \u003creinette.chatre@intel.com\u003e\n"
    },
    {
      "commit": "6c69d121676761b2a85282df796af9c3f8c99b64",
      "tree": "874393ea948e26e85b7ea5fe914e7b8041ed4e05",
      "parents": [
        "2f3f7f9c23287c742af1d435b6fe8b9c9c7b7bd9"
      ],
      "author": {
        "name": "Wey-Yi Guy",
        "email": "wey-yi.w.guy@intel.com",
        "time": "Thu Mar 18 15:37:49 2010 -0700"
      },
      "committer": {
        "name": "Reinette Chatre",
        "email": "reinette.chatre@intel.com",
        "time": "Thu Mar 25 11:21:11 2010 -0700"
      },
      "message": "iwlwifi: remove \"\\n\" from module parameter description\n\nRemove the \"\\n\" from following module parameter description:\n - enable wifi/bluetooth co-exist\n - led mode: 0\u003dblinking, 1\u003dOn(RF On)/Off(RF Off), (default 0)\nto be consistence with the rest of iwlagn/iwlcore module parameters format.\n\nSigned-off-by: Wey-Yi Guy \u003cwey-yi.w.guy@intel.com\u003e\nSigned-off-by: Reinette Chatre \u003creinette.chatre@intel.com\u003e\n"
    },
    {
      "commit": "2f3f7f9c23287c742af1d435b6fe8b9c9c7b7bd9",
      "tree": "ecba99adab910bc7b49dd1cc6e8c3e04e4e16c20",
      "parents": [
        "ed1b6e99b5e64d2b9cdf764754a072c7fdc1c3c4"
      ],
      "author": {
        "name": "Wey-Yi Guy",
        "email": "wey-yi.w.guy@intel.com",
        "time": "Thu Mar 18 10:56:32 2010 -0700"
      },
      "committer": {
        "name": "Reinette Chatre",
        "email": "reinette.chatre@intel.com",
        "time": "Thu Mar 25 11:20:58 2010 -0700"
      },
      "message": "iwlwifi: Generic approach to measure temperature\n\nIn stead of checking for 4965 and do KELVIN_TO_CELSIUS conversation, add\n.cfg parameter for more generic approach.\n\nSigned-off-by: Wey-Yi Guy \u003cwey-yi.w.guy@intel.com\u003e\nSigned-off-by: Reinette Chatre \u003creinette.chatre@intel.com\u003e\n"
    },
    {
      "commit": "ed1b6e99b5e64d2b9cdf764754a072c7fdc1c3c4",
      "tree": "e635e413b07191690584ecd54d415495c74be08d",
      "parents": [
        "3d2b162e7e0a3e5093bccdf455f7c83f65c82db8"
      ],
      "author": {
        "name": "Johannes Berg",
        "email": "johannes.berg@intel.com",
        "time": "Thu Mar 18 09:58:27 2010 -0700"
      },
      "committer": {
        "name": "Reinette Chatre",
        "email": "reinette.chatre@intel.com",
        "time": "Thu Mar 25 11:20:44 2010 -0700"
      },
      "message": "iwlwifi: remove noise reporting\n\nWe go to great lengths to calculate this value\nthat is never used by mac80211. Additionally,\nit is now deprecated by mac80211 and is causing\ndriver compilation to give warnings.\n\nSigned-off-by: Johannes Berg \u003cjohannes.berg@intel.com\u003e\nSigned-off-by: Reinette Chatre \u003creinette.chatre@intel.com\u003e\n"
    },
    {
      "commit": "3d2b162e7e0a3e5093bccdf455f7c83f65c82db8",
      "tree": "bf5f5fc967efd4a79e60ee2bdd2e30db6ab50499",
      "parents": [
        "510cb791ab32a6296e45ebc425a011551bed7bd1"
      ],
      "author": {
        "name": "Wey-Yi Guy",
        "email": "wey-yi.w.guy@intel.com",
        "time": "Wed Mar 17 18:57:13 2010 -0700"
      },
      "committer": {
        "name": "Reinette Chatre",
        "email": "reinette.chatre@intel.com",
        "time": "Thu Mar 25 11:20:32 2010 -0700"
      },
      "message": "iwlwifi: add missing email address information\n\nAdd missing contact email address to iwl-5000.c\n\nSigned-off-by: Wey-Yi Guy \u003cwey-yi.w.guy@intel.com\u003e\nSigned-off-by: Reinette Chatre \u003creinette.chatre@intel.com\u003e\n"
    }
  ],
  "next": "510cb791ab32a6296e45ebc425a011551bed7bd1"
}
