)]}'
{
  "log": [
    {
      "commit": "016281880439a8665ecf37514865742da58131d4",
      "tree": "2f6a757a581c71cfb8cd891e0583fbffb359830b",
      "parents": [
        "17b141803c6c6e27fbade3f97c1c9d8d66c72866",
        "865be7a81071a77014c83cd01536c989eed362b4"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu May 19 17:55:12 2011 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu May 19 17:55:12 2011 -0700"
      },
      "message": "Merge branch \u0027x86-cpu-for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip\n\n* \u0027x86-cpu-for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:\n  x86, cpu: Fix detection of Celeron Covington stepping A1 and B0\n  Documentation, ABI: Update L3 cache index disable text\n  x86, AMD, cacheinfo: Fix L3 cache index disable checks\n  x86, AMD, cacheinfo: Fix fallout caused by max3 conversion\n  x86, cpu: Change NOP selection for certain Intel CPUs\n  x86, cpu: Clean up and unify the NOP selection infrastructure\n  x86, percpu: Use ASM_NOP4 instead of hardcoding P6_NOP4\n  x86, cpu: Move AMD Elan Kconfig under \"Processor family\"\n\nFix up trivial conflicts in alternative handling (commit dc326fca2b64\n\"x86, cpu: Clean up and unify the NOP selection infrastructure\" removed\nsome hacky 5-byte instruction stuff, while commit d430d3d7e646 \"jump\nlabel: Introduce static_branch() interface\" renamed HAVE_JUMP_LABEL to\nCONFIG_JUMP_LABEL in the code that went away)\n"
    },
    {
      "commit": "bb0a56ecc4ba2a3db1b6ea6949c309886e3447d3",
      "tree": "680b1307d7d9c1a188b7483875f7a3287d8b51a0",
      "parents": [
        "1a8e1463a49aaa452da1cefe184a00d4df47f1ef"
      ],
      "author": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Thu May 19 18:51:07 2011 -0400"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Thu May 19 18:51:07 2011 -0400"
      },
      "message": "[CPUFREQ] Move x86 drivers to drivers/cpufreq/\n\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "865be7a81071a77014c83cd01536c989eed362b4",
      "tree": "4fd71b4c50c40b174ea728f79a4301d765c4b88c",
      "parents": [],
      "author": {
        "name": "Ondrej Zary",
        "email": "linux@rainbow-software.org",
        "time": "Mon May 16 21:38:08 2011 +0200"
      },
      "committer": {
        "name": "H. Peter Anvin",
        "email": "hpa@linux.intel.com",
        "time": "Mon May 16 13:24:21 2011 -0700"
      },
      "message": "x86, cpu: Fix detection of Celeron Covington stepping A1 and B0\n\nSteppings A1 and B0 of Celeron Covington are currently misdetected as\nPentium II (Dixon). Fix it by removing the stepping check.\n\n[ hpa: this fixes this specific bug... the CPUID documentation\n  specifies that the L2 cache size can disambiguate additional CPUs;\n  this patch does not fix that. ]\n\nSigned-off-by: Ondrej Zary \u003clinux@rainbow-software.org\u003e\nLink: http://lkml.kernel.org/r/201105162138.15416.linux@rainbow-software.org\nSigned-off-by: H. Peter Anvin \u003chpa@linux.intel.com\u003e\n"
    },
    {
      "commit": "0f1d683fb35d6c6f49ef696c95757f3970682a0e",
      "tree": "098c4510540881debdd6113e62be00f8b503ce8f",
      "parents": [
        "1dbf58881f307e21a3df4b990a5bea401360d02e"
      ],
      "author": {
        "name": "Naga Chumbalkar",
        "email": "nagananda.chumbalkar@hp.com",
        "time": "Thu Dec 17 20:18:27 2009 +0000"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Wed Jan 13 10:55:16 2010 -0500"
      },
      "message": "[CPUFREQ] Processor Clocking Control interface driver\n\nProcessor Clocking Control (PCC) is an interface between the BIOS and OSPM.\nBased on the server workload, OSPM can request what frequency it expects\nfrom a logical CPU, and the BIOS will achieve that frequency transparently.\n\nThis patch introduces driver support for PCC. OSPM uses the PCC driver to\ncommunicate with the BIOS via the PCC interface.\n\nThere is a Documentation file that provides a link to the PCC\nSpecification, and also provides a summary of the PCC interface.\n\nCurrently, certain HP ProLiant platforms implement the PCC interface. However,\nany platform whose BIOS implements the PCC Specification, can utilize this\ndriver.\n\nV2 --\u003e V1 changes (based on Dominik\u0027s suggestions):\n- Removed the dependency on CPU_FREQ_TABLE\n- \"cpufreq_stats\" will no longer PANIC. Actually, it will not load anymore\nbecause it is not applicable.\n- Removed the sanity check for target frequency in the -\u003etarget routine.\n\nNOTE: A patch to sanitize the target frequency requested by \"ondemand\" is\nneeded to ensure that the target freq \u003c policy-\u003emin.\n\nCan this driver be queued up for the 2.6.33 tree?\n\nSigned-off-by: Naga Chumbalkar \u003cnagananda.chumbalkar@hp.com\u003e\nSigned-off-by: Matthew Garrett \u003cmjg@redhat.com\u003e\nSigned-off-by: Thomas Renninger \u003ctrenn@suse.de\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "0fea615e526b4b7eff0363ee02d5753e5f924089",
      "tree": "306e87e03c0529eec05b6a481241057edf18b0ff",
      "parents": [
        "0de51088e6a82bc8413d3ca9e28bbca2788b5b53"
      ],
      "author": {
        "name": "Harald Welte",
        "email": "HaraldWelte@viatech.com",
        "time": "Mon Jun 08 18:29:36 2009 +0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Wed Jun 10 15:22:44 2009 -0700"
      },
      "message": "CPUFREQ: Mark e_powersaver driver as EXPERIMENTAL and DANGEROUS\n\nThe e_powersaver driver for VIA\u0027s C7 CPU\u0027s needs to be marked as\nDANGEROUS as it configures the CPU to power states that are out\nof specification.\n\nAccording to Centaur, all systems with C7 and Nano CPU\u0027s support\nthe ACPI p-state method.  Thus, the acpi-cpufreq driver should\nbe used instead.\n\nSigned-off-by: Harald Welte \u003cHaraldWelte@viatech.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "57f4fa699195b761cbea90db5e38b4bc15610c7c",
      "tree": "875a995aa02e9d171a7fd384ac6813b2cc4f805f",
      "parents": [
        "ed12978453a3845c947695e7ad32bb3ede444813"
      ],
      "author": {
        "name": "Thomas Renninger",
        "email": "trenn@suse.de",
        "time": "Wed Feb 04 01:17:45 2009 +0100"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Tue Feb 24 22:47:31 2009 -0500"
      },
      "message": "[CPUFREQ] powernow-k8: Always compile powernow-k8 driver with ACPI support\n\npowernow-k8 driver should always try to get cpufreq info from ACPI.\nOtherwise it will not be able to detect the transition latency correctly\nwhich results in ondemand governor taking a wrong sampling rate which will\nthen result in sever performance loss.\n\nLet the user not shoot himself in the foot and always compile in ACPI\nsupport for powernow-k8.\n\nThis also fixes a wrong message if ACPI_PROCESSOR is compiled as a module and\n#ifndef CONFIG_ACPI_PROCESSOR\npath is chosen.\n\nSigned-off-by: Thomas Renninger \u003ctrenn@suse.de\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "62663ea8220366472fe20462831f2d69d7987439",
      "tree": "a51aca0373d4b68ba883fee1c6198a1fa7072890",
      "parents": [
        "dcf6a79dda5cc2a2bec183e50d829030c0972aaa"
      ],
      "author": {
        "name": "Thomas Renninger",
        "email": "trenn@suse.de",
        "time": "Tue Feb 03 17:46:46 2009 +0100"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Wed Feb 04 00:12:24 2009 -0500"
      },
      "message": "ACPI: cpufreq: Remove deprecated /proc/acpi/processor/../performance proc entries\n\nThey were long enough set deprecated...\n\nUpdate Documentation/cpu-freq/users-guide.txt:\nThe deprecated files listed there seen not to exist for some time anymore\nalready.\n\nSigned-off-by: Thomas Renninger \u003ctrenn@suse.de\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "ec983f7060cd73e14cdd3edd910339127a8a4e96",
      "tree": "5af2c006894ad2d81e4265e9483b3ce85330dce7",
      "parents": [
        "f2d7499be1b1fe1cd8a5e6a01c1f44173894a241"
      ],
      "author": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Wed Jul 30 12:05:03 2008 -0400"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Fri Aug 08 16:00:48 2008 -0400"
      },
      "message": "[CPUFREQ] Remove EXPERIMENTAL annotation from VIA C7 powersaver kconfig.\n\nThis has been pretty solid, and doesn\u0027t see much change at all.\n\nNoticed by Harald Welte.\n\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "290647b46e4d8c9bd9e89daa19b29ff71e14e4af",
      "tree": "da47441678ac180c97fe0323b5cdbc25b161963f",
      "parents": [
        "488b5ec871191359b9b79262a3d48456dae7ea5f"
      ],
      "author": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Mon Nov 19 22:21:13 2007 -0500"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Wed Feb 06 22:57:57 2008 -0500"
      },
      "message": "[CPUFREQ] Remove pointless Kconfig dependancy\n\nX86_ELAN already depends on X86_32\n\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "e8ef95227a66284e070d255f902e2e4139fd141a",
      "tree": "f99622cafd034a5184a4e6a1fe5e521e136541d5",
      "parents": [
        "6e800af233e0bdf108efb7bd23c11ea6fa34cdeb"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Tue Nov 06 19:35:19 2007 +0100"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Mon Nov 12 21:02:18 2007 +0100"
      },
      "message": "x86: unification of cfufreq/Kconfig\n\nMerge the two Kconfig files to a single file.\n\nChecked using make allmodconfig for x86_64.\nNo changes in build.\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nCc: Adrian Bunk \u003cbunk@kernel.org\u003e\nCc: Dave Jones \u003cdavej@codemonkey.org.uk\u003e\n"
    },
    {
      "commit": "06b4f2a51c02ad6190b569b67ac493659d9df68c",
      "tree": "87e203946d88b8cace7e501d25eced233f7d1b60",
      "parents": [
        "0387f4511e05a5cba8570e47cd1c7b7cc7875787"
      ],
      "author": {
        "name": "Thomas Gleixner",
        "email": "tglx@linutronix.de",
        "time": "Fri Oct 19 20:35:02 2007 +0200"
      },
      "committer": {
        "name": "Thomas Gleixner",
        "email": "tglx@linutronix.de",
        "time": "Fri Oct 19 20:35:02 2007 +0200"
      },
      "message": "x86: move cpufreq Kconfigs to the same directory\n\nMove the 64bit Kconfig file to arch/x86/kernel/cpu/cpufreq, so we\ncan unify them.\n\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\n\n"
    },
    {
      "commit": "ee580dc91efd83e6b55955e7261e8ad2a0e08d1a",
      "tree": "a6f0884e77913df35ae4219fa66fa0c95359c5cf",
      "parents": [
        "c18db0d7e299791c73d4dbe5ae7905b2ab8ba332"
      ],
      "author": {
        "name": "Thomas Gleixner",
        "email": "tglx@linutronix.de",
        "time": "Thu Oct 11 11:16:27 2007 +0200"
      },
      "committer": {
        "name": "Thomas Gleixner",
        "email": "tglx@linutronix.de",
        "time": "Thu Oct 11 11:16:27 2007 +0200"
      },
      "message": "i386: move kernel/cpu/cpufreq\n\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\n"
    },
    {
      "commit": "a1cdd4a64f6ce15a1e81759ef99eed3a91f9acbe",
      "tree": "b0c11bf0870d4bd9b077ffb831626a096c41766d",
      "parents": [
        "f56a384e98aa81065038c4e16f39ed989ccae687"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Thu Jul 26 10:41:05 2007 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@woody.linux-foundation.org",
        "time": "Thu Jul 26 11:35:17 2007 -0700"
      },
      "message": "X86_POWERNOW_K8_ACPI must depend on ACPI\n\nThis patch fixes the following compile error introduced by\ncommit e8666b2718fdb5bf0ea7c3126f7e292bbbf2946b and reported\nby Alexey Dobriyan:\n\n\u003c--  snip  --\u003e\n\n   CC      arch/i386/kernel/acpi/cstate.o\nIn file included from arch/i386/kernel/acpi/cstate.c:17:\ninclude/acpi/processor.h:88: error: expected specifier-qualifier-list before \u0027acpi_integer\u0027\n\n\u003c--  snip  --\u003e\n\nIf you select something you must ensure that the dependencies of what\nyou are selecting are fulfilled.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nCc: Alexey Dobriyan \u003cadobriyan@sw.ru\u003e\nCc: Joshua Hoblitt \u003cjhoblitt@ifa.hawaii.edu\u003e\nCc: Dave Jones \u003cdavej@redhat.com\u003e\nCc: Michal Piotrowski \u003cmichal.k.k.piotrowski@gmail.com\u003e\nCc: Len Brown \u003clenb@kernel.org\u003e\nCc: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "68485695e5a84399da7b48b208ac42623fe22963",
      "tree": "d76718f250443ba51eb4c7b2d43dcde44468f595",
      "parents": [
        "905497c4b2e6715eebde97cbcb313354e14c2489"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Sun Jul 08 23:39:14 2007 +0200"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Fri Jul 13 01:29:51 2007 -0400"
      },
      "message": "[CPUFREQ] the overdue removal of X86_SPEEDSTEP_CENTRINO_ACPI\n\nThis patch contains the overdue removal of X86_SPEEDSTEP_CENTRINO_ACPI.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nAcked-by: Venkatesh Pallipadi \u003cvenkatesh.pallipadi@intel.com\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "e8666b2718fdb5bf0ea7c3126f7e292bbbf2946b",
      "tree": "fb1e0a2d6fadf5c6083c5fcff2e3fb106efd2eb7",
      "parents": [
        "275bc6b7f6429afb8d7a883c2e267547dd899066"
      ],
      "author": {
        "name": "Joshua Hoblitt",
        "email": "jhoblitt@ifa.hawaii.edu",
        "time": "Mon May 21 16:47:43 2007 -1000"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Wed Jun 06 17:23:46 2007 -0400"
      },
      "message": "[CPUFREQ] Kconfig powernow-k8 driver should depend on ACPI P-States driver\n\npowernow-k8 really needs to use ACPI to function on SMP systems.\nThe current Kconfig allows us to build kernels which fail mysteriously\nfor some users due to us trying to automatically enable this, and\ngetting it wrong.  It\u0027s easier to just present this as an option\nto the user.\n\nSigned-off-by: Joshua Hoblitt \u003cjhoblitt@ifa.hawaii.edu\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "22f7bb0329a506f2fd61c14ce3c8bc632e08c732",
      "tree": "2b847fad11d66373a7de732ee0d008aaaf63b621",
      "parents": [
        "2b8c0e13026c30bd154dc521ffc235360830c712"
      ],
      "author": {
        "name": "Thomas Renninger",
        "email": "trenn@suse.de",
        "time": "Fri Feb 16 08:44:43 2007 +0100"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Tue Feb 20 14:23:43 2007 -0500"
      },
      "message": "[CPUFREQ] Revert default on deprecated config X86_SPEEDSTEP_CENTRINO_ACPI\n\nRevert default on deprecated config X86_SPEEDSTEP_CENTRINO_ACPI\n\nSigned-off-by: Thomas Renninger \u003ctrenn@suse.de\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n\n arch/i386/kernel/cpu/cpufreq/Kconfig |    1 -\n arch/x86_64/kernel/cpufreq/Kconfig   |    1 -\n 2 files changed, 2 deletions(-)\n"
    },
    {
      "commit": "86acd49aa128bd7a1d4362c256c21fbdc2d5b1a0",
      "tree": "f3a70cd217c1b1db86b291b2b4a2e771850816aa",
      "parents": [
        "786f46b262cb7a491f4b144e42f076d5a1ef8eef"
      ],
      "author": {
        "name": "Rafa³ Bilski",
        "email": "rafalbilski@interia.pl",
        "time": "Mon Feb 05 19:57:25 2007 +0100"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Sat Feb 10 20:01:47 2007 -0500"
      },
      "message": "[CPUFREQ] Enhanced PowerSaver driver\n\nThis is driver for Enhanced Powersaver which is present in VIA C7\nprocessors. Beta tested by Jorgen (jorgen (at) greven dot dk).\nThanks! Based on documentation provided by Dave Jones (Thanks!)\nand C7 Eden datasheet available from www.via.com.tw. Looks like all\nthese C7 Eden CPU\u0027s don\u0027t have P-states in BIOS. I know that 2\np-states is low, but Jorgen finds it usefull anyway because board\nis passive cooled.\nThere are 3 different types of C7 processors (called brands):\n0. C7-M - these processors can set any maultiplier between min and\nmax, any voltage between min and max.\n1. C7 - only min and max states are supported. Voltage is different\nfor min and max states.\n2. Eden - only min and max states are supported. Looks like this\nbrand can only change multiplier. Voltage seems to be the same for\nmin and max frequency.\n\nSigned-off-by: Rafal Bilski \u003crafalbilski@interia.pl\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "83d0515bbb10c7a3e52eee697d1032e447291eda",
      "tree": "dba32263b1d8374422d44772455e4acbea75de3a",
      "parents": [
        "dde9f7ba60adac0cade262ab9b17654e93c626e2"
      ],
      "author": {
        "name": "Venkatesh Pallipadi",
        "email": "venkatesh.pallipadi@intel.com",
        "time": "Tue Oct 03 12:34:28 2006 -0700"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Sun Oct 15 19:57:10 2006 -0400"
      },
      "message": "[CPUFREQ][4/8] acpi-cpufreq: Mark speedstep-centrino ACPI as deprecated\n\nMark ACPI hooks in speedstep-centrino as deprecated. Change the order in which\nspeedstep-centrino and acpi-cpufreq (when both are in kernel) will be\nadded. First driver to be tried is now acpi-cpufreq, followed by\nspeedstep-centrino.\n\nAdd a note in feature-removal-schedule to mark this deprecation.\n\nSigned-off-by: Denis Sadykov \u003cdenis.m.sadykov@intel.com\u003e\nSigned-off-by: Venkatesh Pallipadi \u003cvenkatesh.pallipadi@intel.com\u003e\nSigned-off-by: Alexey Starikovskiy \u003calexey.y.starikovskiy@intel.com\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "95a53249db330a3f08090611fdb5fe168a73e650",
      "tree": "572475300c56ae0db8b4936d045ddff2d2807f48",
      "parents": [
        "0d6daba5faed26a2f50a40adf5d4674a9a54717e"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Sat Jul 08 22:20:26 2006 +0200"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Mon Jul 31 18:37:05 2006 -0400"
      },
      "message": "[CPUFREQ] X86_GX_SUSPMOD must depend on PCI\n\nIt seems commit 32ee8c3e470d86588b51dc42ed01e85c5fa0f180 accidentially\nreverted cdc9cc1d740ffc3d8d8207fbf5df9bf05fcc9955, IOW, it reintroduced\nthe following compile error with CONFIG_PCI\u003dn:\n\n\u003c--  snip  --\u003e\n\n...\n  CC      arch/i386/kernel/cpu/cpufreq/gx-suspmod.o\narch/i386/kernel/cpu/cpufreq/gx-suspmod.c: In function ‘gx_detect_chipset’:\narch/i386/kernel/cpu/cpufreq/gx-suspmod.c:193: error: implicit declaration of function ‘pci_match_id’\narch/i386/kernel/cpu/cpufreq/gx-suspmod.c:193: warning: comparison between pointer and integer\nmake[3]: *** [arch/i386/kernel/cpu/cpufreq/gx-suspmod.o] Error 1\n\n\u003c--  snip  --\u003e\n\nThis patch therefore re-adds the dependency of X86_GX_SUSPMOD on PCI.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "dadb49d8746bc4a4b5a310dabf0c838e57a9b531",
      "tree": "48d8cc5382aa37c9eb979e2e4b8a2b629e99ed2a",
      "parents": [
        "9c9a43ed2734081124407c779b36a4761c41139b"
      ],
      "author": {
        "name": "Rafa³ Bilski",
        "email": "rafalbilski@interia.pl",
        "time": "Mon Jul 03 07:19:05 2006 +0200"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Mon Jul 31 18:37:05 2006 -0400"
      },
      "message": "[CPUFREQ] Longhaul - Hook into ACPI C states.\n\nMinimal change necessary for hardware support.\n\nChanges in longhaul.c:\n- most important - now C3 state is causing transition,\n- code responsible for clearing \"bus master\" bit removed,\n- protect bcr2 transition in the same way as longhaul.\n\nSigned-off-by: Rafa³ Bilski \u003crafalbilski@interia.pl\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "388d6c5180faf83ea06dc2614e8e89910ddef4f0",
      "tree": "c737c7bfa15223cf21a282c7385e2c2ca9d7ac8c",
      "parents": [
        "5e8fb97163c7bf2b370290b4924babc361b05dde"
      ],
      "author": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Sat Mar 11 16:04:53 2006 -0500"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Sat Mar 11 16:04:53 2006 -0500"
      },
      "message": "[CPUFREQ] Whitespace cleanup\n\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "5e8fb97163c7bf2b370290b4924babc361b05dde",
      "tree": "0423452595961d71144a271f0b949f264d2cedbd",
      "parents": [
        "bb1a813d3c49e57814958d2d52b5bb299204032e"
      ],
      "author": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Sat Mar 11 16:03:16 2006 -0500"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Sat Mar 11 16:03:16 2006 -0500"
      },
      "message": "[CPUFREQ] Mark longhaul driver as broken.\nThis seems to work for a short period of time, but when\nused in conjunction with a userspace governor that changes\nthe frequency regularly, it\u0027s only a matter of time before\neverything just locks up.\n\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "32ee8c3e470d86588b51dc42ed01e85c5fa0f180",
      "tree": "d544cc24c37c02f44f9cf89cb5647d74a61d7ce6",
      "parents": [
        "8ad5496d2359a19127ad9f2eda69485025c9917f"
      ],
      "author": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Tue Feb 28 00:43:23 2006 -0500"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Tue Feb 28 00:43:23 2006 -0500"
      },
      "message": "[CPUFREQ] Lots of whitespace \u0026 CodingStyle cleanup.\n\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "cdc9cc1d740ffc3d8d8207fbf5df9bf05fcc9955",
      "tree": "a0d184df3886097b372b3c7be0e3857fdc211b8b",
      "parents": [
        "f3876c1bc7a23d4712c824f2ef5ec7d138259594"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Fri Jan 20 01:25:37 2006 +0100"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Thu Jan 19 16:44:27 2006 -0800"
      },
      "message": "[CPUFREQ] X86_GX_SUSPMOD must depend on PCI\n\nThis patch fixes the following compile error:\n\n...\n  CC      arch/i386/kernel/cpu/cpufreq/gx-suspmod.o\narch/i386/kernel/cpu/cpufreq/gx-suspmod.c: In function \u0027gx_detect_chipset\u0027:\narch/i386/kernel/cpu/cpufreq/gx-suspmod.c:193: error: implicit declaration of function \u0027pci_match_id\u0027\narch/i386/kernel/cpu/cpufreq/gx-suspmod.c:193: warning: comparison between pointer and integer\nmake[3]: *** [arch/i386/kernel/cpu/cpufreq/gx-suspmod.o] Error 1\n\n\u003c--  snip  --\u003e\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "bf6fc9fd2d848d06b8f6c4caccef1dba9ef8c4c6",
      "tree": "5b70d44fcdd24a720ae857a7c16ae4c543465f15",
      "parents": [
        "3310010818aa12145905faf97ffe3742acc842e2"
      ],
      "author": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Tue May 31 19:03:45 2005 -0700"
      },
      "committer": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Tue May 31 19:03:45 2005 -0700"
      },
      "message": "[CPUFREQ] AMD Elan SC520 cpufreq driver.\n\nFrom: Sean Young \u003csean@mess.org\u003e\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n\n"
    },
    {
      "commit": "1da177e4c3f41524e886b7f1b8a0c1fc7321cac2",
      "tree": "0bba044c4ce775e45a88a51686b5d9f90697ea9d",
      "parents": [],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Sat Apr 16 15:20:36 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Sat Apr 16 15:20:36 2005 -0700"
      },
      "message": "Linux-2.6.12-rc2\n\nInitial git repository build. I\u0027m not bothering with the full history,\neven though we have it. We can create a separate \"historical\" git\narchive of that later if we want to, and in the meantime it\u0027s about\n3.2GB when imported into git - space that would just make the early\ngit days unnecessarily complicated, when we don\u0027t have a lot of good\ninfrastructure for it.\n\nLet it rip!\n"
    }
  ]
}
