)]}'
{
  "log": [
    {
      "commit": "ac840605f3b1d9b99e1e6629a54994f8e003ff91",
      "tree": "c0d47ef7ca41c4f88baa5e66b07f95ad586c7341",
      "parents": [
        "fc0eb9f226d8ecc8e3b563bf808bd6d61a6153a1"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Tue Aug 26 14:06:47 2008 +0200"
      },
      "committer": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@marvell.com",
        "time": "Fri Sep 05 06:33:59 2008 +0200"
      },
      "message": "mv643xx_eth: remove force_phy_addr field\n\nCurrently, there are two different fields in the\nmv643xx_eth_platform_data struct that together describe the PHY\naddress -- one field (phy_addr) has the address of the PHY, but if\nthat address is zero, a second field (force_phy_addr) needs to be\nset to distinguish the actual address zero from a zero due to not\nhaving filled in the PHY address explicitly (which should mean\n\u0027use the default PHY address\u0027).\n\nIf we are a bit smarter about the encoding of the phy_addr field,\nwe can avoid the need for a second field -- this patch does that.\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "fc0eb9f226d8ecc8e3b563bf808bd6d61a6153a1",
      "tree": "29c9662ea3ba647bfbf3b0220c86dd168d575bff",
      "parents": [
        "f7981c1c67b53abb4a7d8a501e68585b9826179a"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Tue Aug 26 12:56:56 2008 +0200"
      },
      "committer": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@marvell.com",
        "time": "Fri Sep 05 06:33:58 2008 +0200"
      },
      "message": "mv643xx_eth: smi sharing is a per-unit property, not a per-port one\n\nWhich top-level unit\u0027s SMI interface to use should be a property of\nthe top-level unit, not of the individual ports.  This patch moves the\n-\u003eshared_smi pointer from the per-port platform data to the global\nplatform data.\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "212496fd9a5f5db0a037a2a8c6fde2d2bd93c1d7",
      "tree": "2123533bbb925190389dcea002c04808bd8decf2",
      "parents": [
        "c8791088cffed16f8790c6e80e825ca1f377ce5e"
      ],
      "author": {
        "name": "Jean-Christophe DUBOIS",
        "email": "jcd@tribudubois.net",
        "time": "Thu Aug 28 00:00:23 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Aug 28 17:12:29 2008 +0100"
      },
      "message": "[ARM] 5226/1: remove unmatched comment end.\n\nremove unmatched comment end.\n\nSigned-off-by: Jean-Christophe DUBOIS \u003cjcd@tribudubois.net\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "c8791088cffed16f8790c6e80e825ca1f377ce5e",
      "tree": "b27bd1692e75a4eb64f421288d1d1a14829fb43a",
      "parents": [
        "e80d6a248298721e0ec2cac150c539d8378577d8",
        "a814917058a63978ecd9fbefe4f88e3fc1576a79"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Aug 27 23:07:46 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Aug 27 23:07:46 2008 +0100"
      },
      "message": "Merge branch \u0027omap-rmk\u0027\n"
    },
    {
      "commit": "e80d6a248298721e0ec2cac150c539d8378577d8",
      "tree": "0ad2112037cc28e3faab41baf2b6ea1851748019",
      "parents": [
        "f1bcf7e3e734ea8713e08fbc3409f8bf26ec418f"
      ],
      "author": {
        "name": "Mel Gorman",
        "email": "mel@csn.ul.ie",
        "time": "Thu Aug 14 11:10:14 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Aug 27 20:09:28 2008 +0100"
      },
      "message": "[ARM] Skip memory holes in FLATMEM when reading /proc/pagetypeinfo\n\nOrdinarily, memory holes in flatmem still have a valid memmap and is safe\nto use. However, an architecture (ARM) frees up the memmap backing memory\nholes on the assumption it is never used. /proc/pagetypeinfo reads the\nwhole range of pages in a zone believing that the memmap is valid and that\npfn_valid will return false if it is not. On ARM, freeing the memmap breaks\nthe page-\u003ezone linkages even though pfn_valid() returns true and the kernel\ncan oops shortly afterwards due to accessing a bogus struct zone *.\n\nThis patch lets architectures say when FLATMEM can have holes in the\nmemmap. Rather than an expensive check for valid memory, /proc/pagetypeinfo\nwill confirm that the page linkages are still valid by checking page-\u003ezone\nis still the expected zone. The lookup of page_zone is safe as there is a\nlimited range of memory that is accessed when calling page_zone.  Even if\npage_zone happens to return the correct zone, the impact is that the counters\nin /proc/pagetypeinfo are slightly off but fragmentation monitoring is\nunlikely to be relevant on an embedded system.\n\nReported-by: H Hartley Sweeten \u003chsweeten@visionengravers.com\u003e\nSigned-off-by: Mel Gorman \u003cmel@csn.ul.ie\u003e\nTested-by: H Hartley Sweeten \u003chsweeten@visionengravers.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "f1bcf7e3e734ea8713e08fbc3409f8bf26ec418f",
      "tree": "56d2fa9c61d4904dba92a9a2507bd2583a50a120",
      "parents": [
        "ae82cbfc8beaa69007aa09966d3983ac938c3577"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@kernel.org",
        "time": "Fri Aug 08 19:34:35 2008 +0300"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Aug 27 20:07:59 2008 +0100"
      },
      "message": "[ARM] use bcd2bin/bin2bcd\n\nThis patch changes arm to use the new bcd2bin/bin2bcd functions instead\nof the obsolete BCD_TO_BIN/BIN_TO_BCD macros.\n\nSigned-off-by: Adrian Bunk \u003cbunk@kernel.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "ae82cbfc8beaa69007aa09966d3983ac938c3577",
      "tree": "5af8d8afc21a26c311ccb2cd6b734436748b118f",
      "parents": [
        "e4e4146ec5a0a4221eee051365422ad70cddb673"
      ],
      "author": {
        "name": "Harvey Harrison",
        "email": "harvey.harrison@gmail.com",
        "time": "Mon Aug 18 17:47:55 2008 -0700"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Aug 27 20:05:27 2008 +0100"
      },
      "message": "[ARM] use the new byteorder headers\n\nSigned-off-by: Harvey Harrison \u003charvey.harrison@gmail.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "e4e4146ec5a0a4221eee051365422ad70cddb673",
      "tree": "96e99d23ebc31fad84e40cb323dfe33b0e6af6d0",
      "parents": [
        "9abc6461a3802702ada88cbac1fed045dbd9b466",
        "8e05de88cf5a8ab225697ba12d5f19ec594169ef"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Aug 27 19:30:13 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Aug 27 19:30:13 2008 +0100"
      },
      "message": "Merge branch \u0027for-rmk\u0027 of git://git.marvell.com/orion\n"
    },
    {
      "commit": "a814917058a63978ecd9fbefe4f88e3fc1576a79",
      "tree": "b026a922577486d9a3b9b6a2c2a4e0edd1f6e1be",
      "parents": [
        "9c2d015712ff1deb7ae5f95ef1fd9b5557520bc1"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Aug 27 14:29:40 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Aug 27 16:15:23 2008 +0100"
      },
      "message": "[ARM] OMAP: Fix 2430 SMC91x ethernet IRQ\n\nTaken from omap 97b705ad835f1481270c4b67b402d6e37fa8ad15:\n  ARM: OMAP: Misc compile fixes after syncing with mainline\n\n  Also fix 2430 smc91x to use IRQ_LOWLEVEL.\n\n  Signed-off-by: Tony Lindgren \u003ctony@atomide.com\u003e\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "9c2d015712ff1deb7ae5f95ef1fd9b5557520bc1",
      "tree": "0ede6174dfffab099e3ecae7c84b78ba57fae246",
      "parents": [
        "b6a7e4c032d8ec712f48cf35145a564aa6503eb7"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Aug 27 14:22:13 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Aug 27 16:12:38 2008 +0100"
      },
      "message": "[ARM] OMAP: Add and update OMAP default configuration files\n\nUpdate omap_h2_1610 and omap_osk_5912 default configurations.\n\nAdd ams delta, n770, omap 2430sdp, apollon_2420, generic 1510, 1610,\n1710, 2420, h4 2420, innovator 1510 and 1610, perseus2 730, palte,\npalmtt, palmz71 and sx1 default configurations.\n\nPulled out of the omap zoom tree.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "9abc6461a3802702ada88cbac1fed045dbd9b466",
      "tree": "5d377876a0fb5249902912fd4d1b71a10ba9907b",
      "parents": [
        "f8787fdcf6f46d6a65a42dbddb70cd7e4dc5b741",
        "78af47353065ea776d537f6e8b32c7c15b6ea169"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Tue Aug 26 23:16:39 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Aug 26 23:16:45 2008 +0100"
      },
      "message": "Merge branch \u0027s3c2410\u0027 of git://aeryn.fluff.org.uk/bjdooks/linux.git\n"
    },
    {
      "commit": "78af47353065ea776d537f6e8b32c7c15b6ea169",
      "tree": "a16fdb6b54b9a691e8ca03e68227593e5de4fcbf",
      "parents": [
        "df9f17e20e3180572fe26f60ec4e5ba7db0377a7"
      ],
      "author": {
        "name": "Wei Shuai",
        "email": "cpuwolf@gmail.com",
        "time": "Tue Aug 26 22:54:08 2008 +0100"
      },
      "committer": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Tue Aug 26 22:56:22 2008 +0100"
      },
      "message": "[ARM] S3C2443: Fix the S3C2443 clock register definitions\n\nFix the S3C2443 clock register definitions for selecting the EPLL\nreference clock described by S3C2443_CLKSRC_EPLLREF.\n\nSigned-off-by: Wei Shuai \u003ccpuwolf@gmail.com\u003e\n[ben-linux@fluff.org: minor description fixes]\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\n"
    },
    {
      "commit": "df9f17e20e3180572fe26f60ec4e5ba7db0377a7",
      "tree": "db88107b38ed824aedc906836ecb84312d967402",
      "parents": [
        "66592eee16eaede05734ecc6fef797dafd2c6a12"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Tue Aug 26 22:54:07 2008 +0100"
      },
      "committer": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Tue Aug 26 22:56:22 2008 +0100"
      },
      "message": "[ARM] JIVE: Fix the spi bus numbering\n\nThe first spi bus is registered with number 0, but\nthe board data says that the device on it is registered\non bus 1.\n\nMove the spi bus to bus 1 to keep the compatibility with the\noriginal board-support patches.\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\n"
    },
    {
      "commit": "66592eee16eaede05734ecc6fef797dafd2c6a12",
      "tree": "3e4ccf6c254bab0a77d18f2697688fc08a82a445",
      "parents": [
        "103895925fbee5bd612ce2217f619df717aa1bda"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Tue Aug 26 22:54:06 2008 +0100"
      },
      "committer": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Tue Aug 26 22:56:21 2008 +0100"
      },
      "message": "[ARM] S3C24XX: pwm.c: stop debugging output\n\nMove debugging output to dev_dbg() instead of dev_info().\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\n"
    },
    {
      "commit": "103895925fbee5bd612ce2217f619df717aa1bda",
      "tree": "2a2c61783e7ad0943d3dbde288b7d2bf4c75c69c",
      "parents": [
        "1442e662d8e159a3b67280d284c7b91f9fb31ba4"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Tue Aug 26 22:54:05 2008 +0100"
      },
      "committer": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Tue Aug 26 22:56:21 2008 +0100"
      },
      "message": "[ARM] S3C24XX: Fix sparse warnings in pwm.c\n\nFix the following sparse warnings in arch/arm/plat-s3c24xx/pwm.c:\n\nwarning: symbol \u0027s3c_device_timer\u0027 was not declared. Should it be static?\nwarning: symbol \u0027pwm_calc_tin\u0027 was not declared. Should it be static?\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\n"
    },
    {
      "commit": "1442e662d8e159a3b67280d284c7b91f9fb31ba4",
      "tree": "12d06287d8f8902b21788ce94fe8709be9f7b749",
      "parents": [
        "f4cb1a89640ee28b66081061e55871f5e0ac685f"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Tue Aug 26 22:54:04 2008 +0100"
      },
      "committer": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Tue Aug 26 22:56:21 2008 +0100"
      },
      "message": "[ARM] S3C24XX: Fix spare errors in pwm-clock driver\n\nFix the following sparse warnings in arch/arm/plat-s3c24xx/pwm-clock.c:\n\nwarning: symbol \u0027clk_timer_scaler\u0027 was not declared. Should it be static?\nwarning: symbol \u0027clk_timer_tclk\u0027 was not declared. Should it be static?\nwarning: symbol \u0027clk_timer_tdiv\u0027 was not declared. Should it be static?\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\n"
    },
    {
      "commit": "f4cb1a89640ee28b66081061e55871f5e0ac685f",
      "tree": "b93647864f08136d19cf250d5268c1197c85bb53",
      "parents": [
        "ec8292347b5052633b46b562598b0e3ee7875ce7"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Tue Aug 26 22:54:03 2008 +0100"
      },
      "committer": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Tue Aug 26 22:56:20 2008 +0100"
      },
      "message": "[ARM] S3C24XX: Fix sparse warnings in arch/arm/plat-s3c24xx/gpiolib.c\n\nFix the following problems spotted by sparse:\n\nwarning: symbol \u0027s3c24xx_gpiolib_input\u0027 was not declared. Should it be static?\nwarning: symbol \u0027s3c24xx_gpiolib_output\u0027 was not declared. Should it be static?\nwarning: symbol \u0027s3c24xx_gpiolib_set\u0027 was not declared. Should it be static?\nwarning: symbol \u0027s3c24xx_gpiolib_get\u0027 was not declared. Should it be static?\nwarning: symbol \u0027gpios\u0027 was not declared. Should it be static?\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\n"
    },
    {
      "commit": "ec8292347b5052633b46b562598b0e3ee7875ce7",
      "tree": "bd55980092a69483c1374404fca09a41c5813f2e",
      "parents": [
        "b8e6c91c74e9f0279b7c51048779b3d62da60b88"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Tue Aug 26 22:54:02 2008 +0100"
      },
      "committer": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Tue Aug 26 22:56:20 2008 +0100"
      },
      "message": "[ARM] S3C24XX: Fix nor-simtec driver sparse errors\n\nFix the following sparse errors in arch/arm/mach-s3c2410/nor-simtec.c:\n\n53:27: warning: symbol \u0027simtec_nor_pdata\u0027 was not declared. Should it be static?\n77:13: warning: symbol \u0027nor_simtec_init\u0027 was not declared. Should it be static?\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\n"
    },
    {
      "commit": "f8787fdcf6f46d6a65a42dbddb70cd7e4dc5b741",
      "tree": "20fc8f3dd5683bbf8f70f688a7a9e6b0c8e75c50",
      "parents": [
        "b8e6c91c74e9f0279b7c51048779b3d62da60b88"
      ],
      "author": {
        "name": "Mark Brown",
        "email": "broonie@sirena.org.uk",
        "time": "Tue Aug 26 13:30:03 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Aug 26 16:26:25 2008 +0100"
      },
      "message": "[ARM] 5225/1: zaurus: Register I2C controller for audio codecs\n\ncorgi, spitz and poodle have audio codecs on their primary I2C bus so\nneed to call pxa_set_i2c_info() to set it up during init. Tested on\nspitz by Stanislav.\n\nReported-by: Stanislav Brabec \u003cutx@penguin.cz\u003e\n\nSigned-off-by: Mark Brown \u003cbroonie@opensource.wolfsonmicro.com\u003e\nAcked-by: Richard Purdie \u003crpurdie@rpsys.net\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "7a8fc9b248e77a4eab0613acf30a6811799786b3",
      "tree": "24b3beb8bc0633db27ffdb791f94dce95d51b1d0",
      "parents": [
        "d3ee1b405872214609868f3cde631ac157026dd0"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@kernel.org",
        "time": "Sun Aug 17 17:36:59 2008 +0300"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sat Aug 23 12:14:12 2008 -0700"
      },
      "message": "removed unused #include \u003clinux/version.h\u003e\u0027s\n\nThis patch lets the files using linux/version.h match the files that\n#include it.\n\nSigned-off-by: Adrian Bunk \u003cbunk@kernel.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "8e05de88cf5a8ab225697ba12d5f19ec594169ef",
      "tree": "548ab9e029e988fd789ca90fb672fe27d642ee97",
      "parents": [
        "e45772b2c0a011203b797d2b5f19fe314eacca0e"
      ],
      "author": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Fri Aug 22 13:21:15 2008 -0400"
      },
      "committer": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Fri Aug 22 13:21:15 2008 -0400"
      },
      "message": "[ARM] orion5x: update defconfig to v2.6.27-rc4\n\nSigned-off-by: Nicolas Pitre \u003cnico@marvell.com\u003e\n"
    },
    {
      "commit": "e45772b2c0a011203b797d2b5f19fe314eacca0e",
      "tree": "e59efe9e529681ec1f05032711470338d1ae9799",
      "parents": [
        "c0fe819baf86979a5801387ccd7d8df0dc2f34e2"
      ],
      "author": {
        "name": "Martin Michlmayr",
        "email": "tbm@cyrius.com",
        "time": "Wed Aug 13 10:46:11 2008 +0300"
      },
      "committer": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Thu Aug 21 22:15:17 2008 -0400"
      },
      "message": "[ARM] Orion: register UART1 on QNAP TS-209 and TS-409\n\nRegister UART1 on QNAP TS-209 and TS-409 because the PIC controller\nis connected to it.  This fixes a regression from 2.6.26.\n\nSigned-off-by: Martin Michlmayr \u003ctbm@cyrius.com\u003e\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "c0fe819baf86979a5801387ccd7d8df0dc2f34e2",
      "tree": "7f8ab57e1e9116eeab4b59e233c8b91875e3636b",
      "parents": [
        "35228e840acc70b49a2eab4eb308ca3d544efdcf"
      ],
      "author": {
        "name": "Martin Michlmayr",
        "email": "tbm@cyrius.com",
        "time": "Tue Aug 12 12:50:14 2008 +0300"
      },
      "committer": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Thu Aug 21 22:15:17 2008 -0400"
      },
      "message": "[ARM] Orion: activate lm75 driver on DNS-323\n\nThe lm75 driver was recently converted to the new-style binding,\nso now it can be loaded from the DNS-323 support code.\n\nSigned-off-by: Martin Michlmayr \u003ctbm@cyrius.com\u003e\nTested-by: Tobias Poschwatta \u003ctp@fonz.de\u003e\nAcked-by: Ben Dooks \u003cben-linux@fluff.org\u003e\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "35228e840acc70b49a2eab4eb308ca3d544efdcf",
      "tree": "c8683cc4a054f3ae2a8aefc77dc293e2e1fbdd04",
      "parents": [
        "7a6bb2622692495d1b7445a3e8c257601b803b02"
      ],
      "author": {
        "name": "Martin Michlmayr",
        "email": "tbm@cyrius.com",
        "time": "Sat Aug 09 18:13:33 2008 +0300"
      },
      "committer": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Thu Aug 21 22:15:17 2008 -0400"
      },
      "message": "[ARM] Orion: fix MAC detection on QNAP TS-209 and TS-409\n\nFlash needs to be set up before we can try to read the MAC address\nfrom there.\n\nSigned-off-by: Martin Michlmayr \u003ctbm@cyrius.com\u003e\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "7a6bb2622692495d1b7445a3e8c257601b803b02",
      "tree": "5735707076af1295aa6ef9be2413dfab291bd6da",
      "parents": [
        "6a55617ed5d1aa62b850de2cf66f5ede2eef4825"
      ],
      "author": {
        "name": "Per Andersson",
        "email": "avtobiff@gmail.com",
        "time": "Mon Aug 11 12:00:52 2008 +0200"
      },
      "committer": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Thu Aug 21 22:15:17 2008 -0400"
      },
      "message": "[ARM] Orion: Fix boot crash on Kurobox Pro\n\nThe Kurobox Pro crashes when any of the PCI controller registers\nare accessed.  This patch adds a function to the Orion PCI handling\ncode that board support code can call to disable enumerating the\nPCI bus entirely, and makes the Kurobox Pro PCI-related init code\ncall this function.\n\nSigned-off-by: Per Andersson \u003cavtobiff@gmail.com\u003e\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "55d8460c921ed725f5bf46c826a6bddbe8a75c46",
      "tree": "fac826b9e5c96542c0f9553a7142d7e9f65ad55b",
      "parents": [
        "d90c1add96a038fc45c7239017ba4f9a9a5ca42b"
      ],
      "author": {
        "name": "Mike Rapoport",
        "email": "mike@compulab.co.il",
        "time": "Wed Aug 20 06:10:06 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Aug 20 23:17:13 2008 +0100"
      },
      "message": "[ARM] 5212/1: pxa: fix build error when CPU_PXA310 is not defined\n\nFix\narch/arm/mach-pxa/pxa300.c:94: error: \u0027CKEN_MMC3\u0027 undeclared here (not in a function)\nwhen building for PXA300.\n\nSigned-off-by: Mike Rapoport \u003cmike@compulab.co.il\u003e\nAcked-by: Eric Miao \u003ceric.miao@marvell.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "d90c1add96a038fc45c7239017ba4f9a9a5ca42b",
      "tree": "8889cb26cb6d70a6705ca28669f885b2bfba67cb",
      "parents": [
        "1a1dc50442ef1a3e5ef938a8541466ac38d163a9"
      ],
      "author": {
        "name": "Tomasz Chmielewski",
        "email": "mangoo@wpkg.org",
        "time": "Tue Aug 19 09:54:20 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Aug 19 16:56:42 2008 +0100"
      },
      "message": "[ARM] 5208/1: fsg-setup.c fixes\n\nThis patch against 2.6.27-rc3 does the following changes to FSG-3 setup code:\n\n1) Enable RTC on FSG-3 (proper name is needed). This change is needed due to a recent change in i2c.\n\n2) i variable is only used when compiling for big endian.\nSo move its declaration to ARMEB ifdef to silence the warning when compiling for LE.\n\nMailing list link:\nhttp://lists.arm.linux.org.uk/lurker/message/20080813.091556.cae2917e.en.html\n\nSigned-off-by: Tomasz Chmielewski \u003cmangoo@wpkg.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "1a1dc50442ef1a3e5ef938a8541466ac38d163a9",
      "tree": "c2883f1e744af83213e24f537f2d7102e381b55e",
      "parents": [
        "faa64c93ae3fa3b3c97e502e60ce8430ab61cd9d",
        "908cbc10135755ea055feaa6a8ec209edfe489be"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Mon Aug 18 22:17:37 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Mon Aug 18 22:17:37 2008 +0100"
      },
      "message": "Merge branch \u0027for_rmk_17\u0027 of git://git.mnementh.co.uk/linux-2.6-im\n"
    },
    {
      "commit": "faa64c93ae3fa3b3c97e502e60ce8430ab61cd9d",
      "tree": "dd6cf233df7ad9ebe4970bbd1e3c9ff691ca626c",
      "parents": [
        "b09c3e3f1710b554348c98e78fbf4a661918779a"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Tue Aug 05 10:36:00 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Mon Aug 18 13:52:07 2008 +0100"
      },
      "message": "[ARM] fix impd1.c build warning\n\n  CC      arch/arm/mach-integrator/impd1.o\narch/arm/mach-integrator/impd1.c: In function `impd1_probe\u0027:\narch/arm/mach-integrator/impd1.c:408: warning: too few arguments for format\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "9c0d2a20fe331946c1a65a5865faf56e93255c5c",
      "tree": "9d47a9239b6249a5dd4244195ec4cc1e55fda3cd",
      "parents": [
        "5e6b83ed8c00f2e2ae5b2413c5907bed735b600d",
        "66bfa2f03191aec2e2958414b1dfb80a56637133"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sat Aug 16 16:48:45 2008 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sat Aug 16 16:48:45 2008 -0700"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-arm\n\n* master.kernel.org:/home/rmk/linux-2.6-arm: (38 commits)\n  [ARM] 5191/1: ARM: remove CVS keywords\n  [ARM] pxafb: fix the warning of incorrect lccr when lcd_conn is specified\n  [ARM] pxafb: add flag to specify output format on LDD pins when base is RGBT16\n  [ARM] pxafb: fix the incorrect configuration of GPIO77 as ACBIAS for TFT LCD\n  [ARM] 5198/1: PalmTX: PCMCIA fixes\n  [ARM] Fix a pile of broken watchdog drivers\n  [ARM] update mach-types\n  [ARM] 5196/1: fix inline asm constraints for preload\n  [ARM] 5194/1: update .gitignore\n  [ARM] add proc-macros.S include to proc-arm940 and proc-arm946\n  [ARM] 5192/1: ARM TLB: add v7wbi_{possible,always}_flags to {possible,always}_tlb_flags\n  [ARM] 5193/1: Wire up missing syscalls\n  [ARM] traps: don\u0027t call undef hook functions with spinlock held\n  [ARM] 5183/2: Provide Poodle LoCoMo GPIO names\n  [ARM] dma-mapping: provide sync_range APIs\n  [ARM] dma-mapping: improve type-safeness of DMA translations\n  [ARM] Kirkwood: instantiate the orion_spi driver in the platform code\n  [ARM] prevent crashing when too much RAM installed\n  [ARM] Kirkwood: Instantiate mv_xor driver\n  [ARM] Orion: Instantiate mv_xor driver for 5182\n  ...\n"
    },
    {
      "commit": "66bfa2f03191aec2e2958414b1dfb80a56637133",
      "tree": "720074202ca7a8106c958fa6c150e6dc4b7292bb",
      "parents": [
        "4f3e2664622d23a17c6fc45a4df4c35cd2612ffb"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@kernel.org",
        "time": "Sun Aug 10 15:25:55 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Aug 16 20:01:18 2008 +0100"
      },
      "message": "[ARM] 5191/1: ARM: remove CVS keywords\n\nThis patch removes CVS keywords that weren\u0027t updated for a long time.\n\nSigned-off-by: Adrian Bunk \u003cbunk@kernel.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "9a1ac7e498b9fc367235aabeb5b86c1319db1de9",
      "tree": "e8e1e80e3aa176e4c2ab0f07ed4f19fe2995ea26",
      "parents": [
        "cb47729bdaf49fe5e9dd2c41554f44a77b5cd590"
      ],
      "author": {
        "name": "Eric Miao",
        "email": "ycmiao@ycmiao-ubuntu.internal.example.org",
        "time": "Fri Aug 15 02:50:44 2008 -0400"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Aug 16 16:39:16 2008 +0100"
      },
      "message": "[ARM] pxafb: add flag to specify output format on LDD pins when base is RGBT16\n\nAnother fix of inconsistent shift of the LCD_BIAS_ACTIVE_* and\nLCD_PCLK_EDGE_* is also included.\n\nSigned-off-by: Eric Miao \u003ceric.miao@marvell.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "da4d77cda07c349d10be1398004ebdfd1a22c426",
      "tree": "d08edb266b852fbc9c98544b96ffc795b142db9f",
      "parents": [
        "16f719de62809e224e37c320760c3ce59098d862"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Aug 13 21:56:24 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Aug 16 09:30:05 2008 +0100"
      },
      "message": "[ARM] update mach-types\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "16f719de62809e224e37c320760c3ce59098d862",
      "tree": "6fceacd79c697b8f7ba0db0e275832dedc1e614a",
      "parents": [
        "da1562af624cbf17935c7fded51466bb1a1b63a8"
      ],
      "author": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Tue Aug 12 22:10:59 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Aug 16 09:30:05 2008 +0100"
      },
      "message": "[ARM] 5196/1: fix inline asm constraints for preload\n\nWith gcc 4.3 and later, a pointer that has already been dereferenced is\nassumed not to be null since it should have caused a segmentation fault\notherwise, hence any subsequent test against NULL is optimized away.\n\nCurrent inline asm constraint used in the implementation of prefetch()\nmakes gcc believe that the pointer is dereferenced even though the PLD\ninstruction does not load any data and does not cause a segmentation\nfault on null pointers, which causes all sorts of interesting results\nwhen reaching the end of a linked lists for example.\n\nLet\u0027s use a better constraint to properly represent the actual usage of\nthe pointer value.\n\nProblem reported by Chris Steel.\n\nSigned-off-by: Nicolas Pitre \u003cnico@marvell.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "163f6876f5c3ff8215e900b93779e960a56b3694",
      "tree": "9ba2df8417dedd3a17cf3ba4cba5a2acd578ee3a",
      "parents": [
        "7ade3fcc1fe2801336112027a884070c9ca451af"
      ],
      "author": {
        "name": "Huang Ying",
        "email": "ying.huang@intel.com",
        "time": "Fri Aug 15 00:40:22 2008 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Aug 15 08:35:42 2008 -0700"
      },
      "message": "kexec jump: rename KEXEC_CONTROL_CODE_SIZE to KEXEC_CONTROL_PAGE_SIZE\n\nRename KEXEC_CONTROL_CODE_SIZE to KEXEC_CONTROL_PAGE_SIZE, because control\npage is used for not only code on some platform.  For example in kexec\njump, it is used for data and stack too.\n\n[akpm@linux-foundation.org: unbreak powerpc and arm, finish conversion]\nSigned-off-by: Huang Ying \u003cying.huang@intel.com\u003e\nCc: Pavel Machek \u003cpavel@ucw.cz\u003e\nCc: \"Rafael J. Wysocki\" \u003crjw@sisk.pl\u003e\nCc: \"Eric W. Biederman\" \u003cebiederm@xmission.com\u003e\nCc: Vivek Goyal \u003cvgoyal@redhat.com\u003e\nCc: Ingo Molnar \u003cmingo@elte.hu\u003e\nCc: Russell King \u003crmk@arm.linux.org.uk\u003e\nCc: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "ca6d1b1333bc2e61e37982de1f28d8604c232414",
      "tree": "6675d284fc932e9125fc7fd083eebb7f0a1d5695",
      "parents": [
        "f362a47560070ec0aaf68ac6b45901eeed1c844f"
      ],
      "author": {
        "name": "Felipe Balbi",
        "email": "felipe.balbi@nokia.com",
        "time": "Fri Aug 08 12:40:54 2008 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Aug 13 17:33:01 2008 -0700"
      },
      "message": "usb: musb: pass configuration specifics via pdata\n\nUse platform_data to pass musb configuration-specific\ndetails to musb driver.\n\nThis patch will prevent that other platforms selecting\nHAVE_CLK and enabling musb won\u0027t break tree building.\n\nThe other parts of it will come when linux-omap merge\nup more omap2/3 board-files.\n\nSigned-off-by: Felipe Balbi \u003cfelipe.balbi@nokia.com\u003e\nAcked-by: Paul Mundt \u003clethal@linux-sh.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "da1562af624cbf17935c7fded51466bb1a1b63a8",
      "tree": "2efce5a2ede34bb483a492b056c51a86b3b26abd",
      "parents": [
        "8a5544c887a8682e39c94061c58180e9c44b050b"
      ],
      "author": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Tue Aug 12 17:13:19 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Aug 12 19:54:09 2008 +0100"
      },
      "message": "[ARM] 5194/1: update .gitignore\n\nSigned-off-by: Nicolas Pitre \u003cnico@marvell.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "8a5544c887a8682e39c94061c58180e9c44b050b",
      "tree": "58963ef0c1081b89d3d04eeb16a8c2c6e22470ea",
      "parents": [
        "61db7fb1c78c32b6abdc5c7965981de332aeaa5b"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Tue Aug 12 14:02:23 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Aug 12 19:54:08 2008 +0100"
      },
      "message": "[ARM] add proc-macros.S include to proc-arm940 and proc-arm946\n\n... otherwise these fail to build.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "61db7fb1c78c32b6abdc5c7965981de332aeaa5b",
      "tree": "eab85774d332d93c8c3d9476b9c7ff7576259cc5",
      "parents": [
        "751a8ae95d7ab951104bd1bb643e4b8c8ee5fc4d"
      ],
      "author": {
        "name": "Paul Walmsley",
        "email": "paul@pwsan.com",
        "time": "Tue Aug 12 00:04:15 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Aug 12 19:54:08 2008 +0100"
      },
      "message": "[ARM] 5192/1: ARM TLB: add v7wbi_{possible,always}_flags to {possible,always}_tlb_flags\n\nCommit 2ccdd1e77da52ad494e9af46bf272d816830cb28 doesn\u0027t add\nv7wbi_possible_flags and v7wbi_always_flags to possible_tlb_flags and\nalways_tlb_flags.  This causes the L2 cache flush in clean_pmd_entry()\n(intended for Feroceon only) to execute on ARMv7, and the CPU hangs.\n\nThis patch is required for OMAP3 boards to boot.\n\nSigned-off-by: Paul Walmsley \u003cpaul@pwsan.com\u003e\nAcked-by: Lennert Buytenhek \u003cbuytenh@wantstofly.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "751a8ae95d7ab951104bd1bb643e4b8c8ee5fc4d",
      "tree": "57e5a24cee816f4719d0f088f978cfe693e43222",
      "parents": [
        "b03a5b7559563dafdbe52f8b5d8e453a914db941"
      ],
      "author": {
        "name": "Stefan Schmidt",
        "email": "stefan@datenfreihafen.org",
        "time": "Tue Aug 12 11:15:02 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Aug 12 19:54:07 2008 +0100"
      },
      "message": "[ARM] 5193/1: Wire up missing syscalls\n\nSetup some missing syscall pointed out by the checksyscalls.sh script. Fix two\nsmall whitespace issues while being there.\n\nSigned-off-by: Stefan Schmidt \u003cstefan@datenfreihafen.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "b03a5b7559563dafdbe52f8b5d8e453a914db941",
      "tree": "974cc4b38f6e58b1c4065af98b3d8380360ebff0",
      "parents": [
        "f64c0accea433a83261afb81193412146cc0e569"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Mon Aug 11 12:27:16 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Aug 12 19:54:07 2008 +0100"
      },
      "message": "[ARM] traps: don\u0027t call undef hook functions with spinlock held\n\nCalling the undefined instruction handler functions with a\nspinlock held is a recipe for must_sleep() warnings.  Avoid it.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "f64c0accea433a83261afb81193412146cc0e569",
      "tree": "b111d966f265cb259a54244f6088cfd7fce9492e",
      "parents": [
        "9dd428680573d7867ee5e40fa3f059a98301d416"
      ],
      "author": {
        "name": "Dmitry Baryshkov",
        "email": "dbaryshkov@gmail.com",
        "time": "Fri Aug 08 23:14:58 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Aug 12 19:54:06 2008 +0100"
      },
      "message": "[ARM] 5183/2: Provide Poodle LoCoMo GPIO names\n\nFix Poodle ASoC compilation by providing Poodle LoCoMo GPIO names.\n\nCc: Richard Purdie \u003crpurdie@rpsys.net\u003e\nCc: Mark Brown \u003cbroonie@opensource.wolfsonmicro.com\u003e\nSigned-off-by: Dmitry Baryshkov \u003cdbaryshkov@gmail.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "908cbc10135755ea055feaa6a8ec209edfe489be",
      "tree": "fd14374e37d5409eeb592769a1a00b26bbc23178",
      "parents": [
        "2836548826b4187ba770b14d36bc40d52a76b49c"
      ],
      "author": {
        "name": "Ian Molton",
        "email": "spyro@f2s.com",
        "time": "Sat Aug 09 21:50:28 2008 +0100"
      },
      "committer": {
        "name": "Ian Molton",
        "email": "spyro@f2s.com",
        "time": "Tue Aug 12 19:13:31 2008 +0100"
      },
      "message": "[ARM] e400 config use MFP\n\n    This patch updates e400 to use the new MFP GPIO setup code.\n\n    Signed-off-by: Ian Molton \u003cspyro@f2s.com\u003e\n"
    },
    {
      "commit": "2836548826b4187ba770b14d36bc40d52a76b49c",
      "tree": "6a1b0709afc0218735898392a70c1199909e4f8c",
      "parents": [
        "dec5abe9219aebf6d65e9af95de1c031d7039bdb"
      ],
      "author": {
        "name": "Ian Molton",
        "email": "spyro@f2s.com",
        "time": "Sat Aug 09 21:48:45 2008 +0100"
      },
      "committer": {
        "name": "Ian Molton",
        "email": "spyro@f2s.com",
        "time": "Tue Aug 12 19:13:23 2008 +0100"
      },
      "message": "[ARM] e740 config use MFP\n\nThis patch updates e740 to use the new MFP GPIO setup code.\n\nSigned-off-by: Ian Molton \u003cspyro@f2s.com\u003e\n"
    },
    {
      "commit": "dec5abe9219aebf6d65e9af95de1c031d7039bdb",
      "tree": "9afd98701f3aeb680046139f12216926aa963816",
      "parents": [
        "c1ed406c212973bd59712a0ab722639a75381898"
      ],
      "author": {
        "name": "Ian Molton",
        "email": "spyro@f2s.com",
        "time": "Sat Aug 09 21:26:59 2008 +0100"
      },
      "committer": {
        "name": "Ian Molton",
        "email": "spyro@f2s.com",
        "time": "Tue Aug 12 12:54:31 2008 +0100"
      },
      "message": "[ARM] Fix eseries IRQ limit\n\nThe max IRQ is too small for all e-series machines which have at least one\nGPIO expander chip in them.\n\nSigned-off-by: Ian Molton \u003cspyro@f2s.com\u003e\n"
    },
    {
      "commit": "c1ed406c212973bd59712a0ab722639a75381898",
      "tree": "da8c1365135d2b6dd0f26b7721cd4518fd73cdda",
      "parents": [
        "5fedd0afd661cf2d387a6eb1b0df78ddbc0c9086"
      ],
      "author": {
        "name": "Ian Molton",
        "email": "spyro@f2s.com",
        "time": "Sat Jul 26 00:52:36 2008 +0100"
      },
      "committer": {
        "name": "Ian Molton",
        "email": "spyro@f2s.com",
        "time": "Tue Aug 12 12:54:31 2008 +0100"
      },
      "message": "[ARM] clocklib: Update users of aliases to new API\n\nThis patch removes the hardcoded alias array from pxa25x.c and reimplements\nits functionality using the new clock alias call.\n\nSigned-off-by: Ian Molton \u003cspyro@f2s.com\u003e\n"
    },
    {
      "commit": "5fedd0afd661cf2d387a6eb1b0df78ddbc0c9086",
      "tree": "bd9055f838a9cd90fed0a19f226d51e5e2519232",
      "parents": [
        "67a6e80ede815224db22518cd08350277bbeddb9"
      ],
      "author": {
        "name": "Ian Molton",
        "email": "spyro@f2s.com",
        "time": "Fri Jul 25 12:02:31 2008 +0100"
      },
      "committer": {
        "name": "Ian Molton",
        "email": "spyro@f2s.com",
        "time": "Tue Aug 12 12:54:30 2008 +0100"
      },
      "message": "[ARM] clocklib: Allow dynamic alias creation\n\nThis patch allows dynamic creation of clock aliases in order to\nmake it possible to have platform independent clock names for use in\ndevice drivers.\n\nSigned-off-by: Ian Molton \u003cspyro@f2s.com\u003e\n"
    },
    {
      "commit": "67a6e80ede815224db22518cd08350277bbeddb9",
      "tree": "b8156721dbb01cae82417c59c70b605f260cf5ee",
      "parents": [
        "10fec20ef5eec1c91913baec1225400f0d02df40"
      ],
      "author": {
        "name": "Ian Molton",
        "email": "spyro@f2s.com",
        "time": "Sat Jul 26 00:51:12 2008 +0100"
      },
      "committer": {
        "name": "Ian Molton",
        "email": "spyro@f2s.com",
        "time": "Tue Aug 12 12:54:30 2008 +0100"
      },
      "message": "[ARM] eseries: whitespace fixes and cleanup\n\nSigned-off-by: Ian Molton\n"
    },
    {
      "commit": "9dd428680573d7867ee5e40fa3f059a98301d416",
      "tree": "cedec454e5490d2f09b3cad4b6c2fed46a6f857b",
      "parents": [
        "98ed7d4b1a4eebc1ac25929b6968673bef4d54c3"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sun Aug 10 12:18:26 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sun Aug 10 14:05:14 2008 +0100"
      },
      "message": "[ARM] dma-mapping: provide sync_range APIs\n\nConvert the existing dma_sync_single_for_* APIs to the new range based\nAPIs, and make the dma_sync_single_for_* API a superset of it.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "98ed7d4b1a4eebc1ac25929b6968673bef4d54c3",
      "tree": "b9c0e29f20666f433d346c80b557ef0f055336eb",
      "parents": [
        "492c71dd545a54dc62df8780bd8d233d771748df"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sun Aug 10 12:10:49 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sun Aug 10 12:10:49 2008 +0100"
      },
      "message": "[ARM] dma-mapping: improve type-safeness of DMA translations\n\nOMAP at least gets the return type(s) for the DMA translation functions\nwrong, which can lead to subtle errors.  Avoid this by moving the DMA\ntranslation functions to asm/dma-mapping.h, and converting them to\ninline functions.\n\nFix the OMAP DMA translation macros to use the correct argument and\nresult types.\n\nAlso, remove the unnecessary casts in dmabounce.c.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "492c71dd545a54dc62df8780bd8d233d771748df",
      "tree": "73960c90dd47938000478b9b3b1228a8c860e65b",
      "parents": [
        "f0af7245f1725fdc39b32b59c20500448437ddbe",
        "18365d181fe7fee8b52cd12482200d3a4c48d05e"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Aug 09 18:03:13 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Aug 09 18:03:13 2008 +0100"
      },
      "message": "Merge branch \u0027for-rmk\u0027 of git://git.marvell.com/orion\n"
    },
    {
      "commit": "18365d181fe7fee8b52cd12482200d3a4c48d05e",
      "tree": "012a7e80cea61239be59e366cbfd1deef3ae83c5",
      "parents": [
        "60296c71f6c5063e3c1f1d2619ca0b60940162e7"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Sat Aug 09 15:38:18 2008 +0200"
      },
      "committer": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@marvell.com",
        "time": "Sat Aug 09 15:38:18 2008 +0200"
      },
      "message": "[ARM] Kirkwood: instantiate the orion_spi driver in the platform code\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "60296c71f6c5063e3c1f1d2619ca0b60940162e7",
      "tree": "9b66e8716d83c3d350829376d75212798b2c72c6",
      "parents": [
        "09c0ed2e6eb87613b2670c15ba771ac671db19d9"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Tue Aug 05 01:56:13 2008 +0200"
      },
      "committer": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@marvell.com",
        "time": "Sat Aug 09 15:38:15 2008 +0200"
      },
      "message": "[ARM] prevent crashing when too much RAM installed\n\nThis patch will truncate and/or ignore memory banks if their kernel\ndirect mappings would (partially) overlap with the vmalloc area or\nthe mappings between the vmalloc area and the address space top, to\nprevent crashing during early boot if there happens to be more RAM\ninstalled than we are expecting.\n\nSince the start of the vmalloc area is not at a fixed address (but\nthe vmalloc end address is, via the per-platform VMALLOC_END define),\na default area of 128M is reserved for vmalloc mappings, which can\nbe shrunk or enlarged by passing an appropriate vmalloc\u003d command line\noption as it is done on x86.\n\nOn a board with a 3:1 user:kernel split, VMALLOC_END at 0xfe000000,\ntwo 512M RAM banks and vmalloc\u003d128M (the default), this patch gives:\n\n\tTruncating RAM at 20000000-3fffffff to -35ffffff (vmalloc region overlap).\n\tMemory: 512MB 352MB \u003d 864MB total\n\nOn a board with a 3:1 user:kernel split, VMALLOC_END at 0xfe800000,\ntwo 256M RAM banks and vmalloc\u003d768M, this patch gives:\n\n\tTruncating RAM at 00000000-0fffffff to -0e7fffff (vmalloc region overlap).\n\tIgnoring RAM at 10000000-1fffffff (vmalloc region overlap).\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\nTested-by: Riku Voipio \u003criku.voipio@iki.fi\u003e\n"
    },
    {
      "commit": "09c0ed2e6eb87613b2670c15ba771ac671db19d9",
      "tree": "226547b30670ea0b71e2a0a6f43a26e0e5e716df",
      "parents": [
        "1d5a1a6e92abb1ecb011a673e637146c4e232f1e"
      ],
      "author": {
        "name": "Saeed Bishara",
        "email": "saeed@marvell.com",
        "time": "Mon Jun 23 04:26:07 2008 -1100"
      },
      "committer": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@marvell.com",
        "time": "Sat Aug 09 15:17:29 2008 +0200"
      },
      "message": "[ARM] Kirkwood: Instantiate mv_xor driver\n\nSigned-off-by: Saeed Bishara \u003csaeed@marvell.com\u003e\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "1d5a1a6e92abb1ecb011a673e637146c4e232f1e",
      "tree": "66a608528e39e0c49645e8cafbed00d4dc761e55",
      "parents": [
        "3af6b0440f7b318af3f6a4c4ce251753377dba3a"
      ],
      "author": {
        "name": "Saeed Bishara",
        "email": "saeed@marvell.com",
        "time": "Mon Jun 16 23:25:12 2008 -1100"
      },
      "committer": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@marvell.com",
        "time": "Sat Aug 09 15:17:28 2008 +0200"
      },
      "message": "[ARM] Orion: Instantiate mv_xor driver for 5182\n\nSigned-off-by: Saeed Bishara \u003csaeed@marvell.com\u003e\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "3af6b0440f7b318af3f6a4c4ce251753377dba3a",
      "tree": "edf5aafc53613a05cb1899acdef6a0c46af24c54",
      "parents": [
        "627ca2fe93e7ef5e746c27f08a4f86cbc04dd915"
      ],
      "author": {
        "name": "Martin Michlmayr",
        "email": "tbm@cyrius.com",
        "time": "Thu Jul 31 07:38:24 2008 +0300"
      },
      "committer": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@marvell.com",
        "time": "Sat Aug 09 15:17:28 2008 +0200"
      },
      "message": "[ARM] Orion: enable CONFIG_RTC_DRV_S35390A in the defconfg for QNAP devices\n\nThe QNAP TS-109/TS-209 and TS-409 devices need RTC_DRV_S35390A.\n\nSigned-off-by: Martin Michlmayr \u003ctbm@cyrius.com\u003e\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "627ca2fe93e7ef5e746c27f08a4f86cbc04dd915",
      "tree": "67eb94fda77f6f3ef8fe571edae9d6597b1f58ea",
      "parents": [
        "94434ba09add528dbd48b9765a31c86372f94dd0"
      ],
      "author": {
        "name": "Martin Michlmayr",
        "email": "tbm@cyrius.com",
        "time": "Sun Jul 13 15:59:00 2008 +0300"
      },
      "committer": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@marvell.com",
        "time": "Sat Aug 09 15:17:28 2008 +0200"
      },
      "message": "[ARM] Orion: enable RTC_DRV_PCF8563 in the defconfig for HP mv2120\n\nEnable RTC_DRV_PCF8563 in the Orion defconfig since this driver is\nneeded by the HP mv2120.\n\nSigned-off-by: Martin Michlmayr \u003ctbm@cyrius.com\u003e\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "94434ba09add528dbd48b9765a31c86372f94dd0",
      "tree": "4450ba11990101189d4f7bbde4450bc56b8280fa",
      "parents": [
        "5cebbd09fc06f4159f10f9f86bbd1517ac0279a2"
      ],
      "author": {
        "name": "Martin Michlmayr",
        "email": "tbm@cyrius.com",
        "time": "Sun Jul 13 16:53:31 2008 +0300"
      },
      "committer": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@marvell.com",
        "time": "Sat Aug 09 15:17:28 2008 +0200"
      },
      "message": "[ARM] Orion: enable KEYBOARD_GPIO in the defconfg\n\nEnable KEYBOARD_GPIO in the Orion defconfig because a number of Orion\ndevices, such as the HP mv2120, define gpio-keys buttons.\n\nSigned-off-by: Martin Michlmayr \u003ctbm@cyrius.com\u003e\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "5cebbd09fc06f4159f10f9f86bbd1517ac0279a2",
      "tree": "7305122f0c2f8dc0c935a9de7cea43d6f98e85c7",
      "parents": [
        "28ca8c802f71283d610656a207f3325c09e4585e"
      ],
      "author": {
        "name": "Martin Michlmayr",
        "email": "tbm@cyrius.com",
        "time": "Thu Jul 31 07:38:08 2008 +0300"
      },
      "committer": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@marvell.com",
        "time": "Sat Aug 09 15:17:28 2008 +0200"
      },
      "message": "[ARM] Orion: Export the reset button of the QNAP TS-409\n\nThe reset button on the QNAP TS-409 is available through gpio.\n\nSigned-off-by: Martin Michlmayr \u003ctbm@cyrius.com\u003e\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "28ca8c802f71283d610656a207f3325c09e4585e",
      "tree": "cc9839cc328f573f6e648bafc4d720dfb21b1bcb",
      "parents": [
        "4a4e30afefbfd069ef09de3514cce4886e83ff10"
      ],
      "author": {
        "name": "Martin Michlmayr",
        "email": "tbm@cyrius.com",
        "time": "Tue Jul 22 01:49:22 2008 +0300"
      },
      "committer": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@marvell.com",
        "time": "Sat Aug 09 15:17:27 2008 +0200"
      },
      "message": "[ARM] Orion: use better key codes for the TS-209/TS-409 buttons\n\nUse key codes for the buttons on the TS-209/TS-409 that make more\nsense than the current values.\n\nSigned-off-by: Martin Michlmayr \u003ctbm@cyrius.com\u003e\nAcked-by: Byron Bradley \u003cbyron.bbradley@gmail.com\u003e\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "4a4e30afefbfd069ef09de3514cce4886e83ff10",
      "tree": "c1a02eae847d3558d343093d1b68dbba1215f44d",
      "parents": [
        "ce72e36ed1a57ba086270039c7d6fac9bf1c5fbc"
      ],
      "author": {
        "name": "Martin Michlmayr",
        "email": "tbm@cyrius.com",
        "time": "Mon Jul 21 19:58:48 2008 +0300"
      },
      "committer": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@marvell.com",
        "time": "Sat Aug 09 15:17:27 2008 +0200"
      },
      "message": "[ARM] Orion: export red SATA lights on TS-409, fix SATA presence/activity\n\nExport the four red SATA LEDs on the QNAP TS-409 that are connected\nthrough gpio.  Since the boot loader apparently sets the SATA LEDs 2-4\nto red and the SATA LED can only be red or green (but not both),\nexporting the red SATA LEDs (which automatically turns them off upon\nboot) makes the green SATA presence/activity indication visible.\n\nSigned-off-by: Martin Michlmayr \u003ctbm@cyrius.com\u003e\nAcked-by: Sylver Bruneau \u003csylver.bruneau@googlemail.com\u003e\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "ce72e36ed1a57ba086270039c7d6fac9bf1c5fbc",
      "tree": "3fae8df5f9f582f46c8d25f1b6a98fadb27f76d8",
      "parents": [
        "6f088f1d215be5250582b974f83f0e3aa6ad3a28"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Sat Aug 09 15:17:27 2008 +0200"
      },
      "committer": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@marvell.com",
        "time": "Sat Aug 09 15:17:27 2008 +0200"
      },
      "message": "[ARM] Orion: support D0 5281 silicon\n\nOn D0 5281 SoCs, we need to disable the wait-for-interrupt\ninstruction due to an erratum.\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\nSigned-off-by: Nicolas Pitre \u003cnico@marvell.com\u003e\nAcked-by: Martin Michlmayr \u003ctbm@cyrius.com\u003e\n"
    },
    {
      "commit": "ed414fb7b840b2ca8bf033efcd9fe9ea8d6fe800",
      "tree": "108a224d008f5b7a0944d6fee362c5f4470215f2",
      "parents": [
        "e38d523fd0932a5d4ef2865360d8828efcf05392"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Fri Aug 08 21:22:36 2008 +0100"
      },
      "committer": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Sat Aug 09 13:51:54 2008 +0100"
      },
      "message": "[ARM] S3C24XX: Fix section mismatch for s3c_lookup_cpu\n\ns3c_lookup_cpu is only used at init time, so make\nit __init.\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\n"
    },
    {
      "commit": "e38d523fd0932a5d4ef2865360d8828efcf05392",
      "tree": "1caacf42bf7cf09104f88fa95a128c2bc26764e4",
      "parents": [
        "29210475945f13c61a7994b54ccf37692a075aeb"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Fri Aug 08 21:22:35 2008 +0100"
      },
      "committer": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Sat Aug 09 13:51:53 2008 +0100"
      },
      "message": "[ARM] CATS: Do not try and map bad PCI IRQ numbers\n\nThe cats_map_irq() function in the Simtec CATS support\ncode is mapping IRQ 255 (invalid IRQ) into what is a\nsupposedly valid interrupt numner which can cause problems\nwith other devices then seeing an interrupt they cannot\nclaim.\n\nIf the IRQ number if \u003e\u003d 255, then return -1 as this is not\nsomething we can map.\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\n"
    },
    {
      "commit": "29210475945f13c61a7994b54ccf37692a075aeb",
      "tree": "e5c7061f5a7ac53e2ddaf71667661d5bbed84afd",
      "parents": [
        "631c9a8a79b9b94eef56afa3bff107ce27c4c2bb"
      ],
      "author": {
        "name": "Huang Weiyi",
        "email": "weiyi.huang@gmail.com",
        "time": "Fri Aug 08 21:22:34 2008 +0100"
      },
      "committer": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Sat Aug 09 13:51:52 2008 +0100"
      },
      "message": "[ARM] JIVE: Remove duplicated mtd includes\n\nRemoved duplicated include file \u003clinux/mtd/mtd.h\u003e and \u003clinux/mtd/partitions.h\u003e\nin arch/arm/mach-s3c2412/mach-jive.c.\n\nSigned-off-by: Huang Weiyi \u003cweiyi.huang@gmail.com\u003e\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\n"
    },
    {
      "commit": "6f088f1d215be5250582b974f83f0e3aa6ad3a28",
      "tree": "f79585741cad29fa9fe9202bf830104815335758",
      "parents": [
        "a09e64fbc0094e3073dbb09c3b4bfe4ab669244b"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Sat Aug 09 13:44:58 2008 +0200"
      },
      "committer": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@marvell.com",
        "time": "Sat Aug 09 13:44:58 2008 +0200"
      },
      "message": "[ARM] Move include/asm-arm/plat-orion to arch/arm/plat-orion/include/plat\n\nThis patch performs the equivalent include directory shuffle for\nplat-orion, and fixes up all users.\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\n"
    },
    {
      "commit": "af7a535688a758d15f06a98833e6a143b29af9de",
      "tree": "bac5ab210bbbbe276f0e44ed84194d7c8bb16aae",
      "parents": [
        "0c17e4ceedd35c78b1c7413dbd16279a350be6bc",
        "c41107c2d4fd31924533f4dbc4c3428acc2b5894"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Fri Aug 08 21:10:12 2008 +0100"
      },
      "committer": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Fri Aug 08 21:10:12 2008 +0100"
      },
      "message": "Merge http://ftp.arm.linux.org.uk/pub/linux/arm/kernel/git-cur/linux-2.6-arm into for-rmk\n"
    },
    {
      "commit": "c41107c2d4fd31924533f4dbc4c3428acc2b5894",
      "tree": "25c5e8b41aefdf8fa9585490c4114e5b94458283",
      "parents": [
        "3b8861715a9c17151e24f03e4ab2c30e6d8a0748"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@kernel.org",
        "time": "Sat Jul 19 17:54:22 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Fri Aug 08 16:06:37 2008 +0100"
      },
      "message": "[ARM] 5177/1: arm/mach-sa1100/Makefile: remove CONFIG_SA1100_USB\n\nThis patch removes the commented out line for the not available\nCONFIG_SA1100_USB option.\n\nReported-by: Robert P. J. Day \u003crpjday@crashcourse.ca\u003e\n\nSigned-off-by: Adrian Bunk \u003cbunk@kernel.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "2727f226a65e034f93846def7fab314dee430df3",
      "tree": "68af1b225c3501358ec2666bf401f165a9eee739",
      "parents": [
        "058ddee5625ade9e9e011b9ae155ac3b8d4eda3a"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Fri Aug 08 15:13:27 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Fri Aug 08 15:13:27 2008 +0100"
      },
      "message": "[ARM] fix pnx4008 build errors\n\ninclude/linux/i2c-pnx.h was missed when moving the include files.\nFix it now; it doesn\u0027t really need to include mach/i2c.h at all.\nSuccessfully build tested with pnx4008_defconfig, which had\nfailed in linux-next.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "058ddee5625ade9e9e011b9ae155ac3b8d4eda3a",
      "tree": "2821d666c06733da81f606624bf2a16bdf86ce73",
      "parents": [
        "afd2fc02ab7bae6062671c5ca80dd34c34a63fb7"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Thu Aug 07 22:36:59 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Aug 07 22:36:59 2008 +0100"
      },
      "message": "[ARM] Fix SMP booting with non-zero PHYS_OFFSET\n\nThe existing code tries to get the pmd for the temporary page table\nby doing:\n\n        pgd \u003d pgd_alloc(\u0026init_mm);\n        pmd \u003d pmd_offset(pgd, PHYS_OFFSET);\n\nSince we have a two level page table, pmd_offset() is a no-op, so\nthis just has a casting effect from a pgd to a pmd - the address\nargument is unused.  So this can\u0027t work.\n\nNormally, we\u0027d do:\n\n\tpgd \u003d pgd_offset(\u0026init_mm, PHYS_OFFSET);\n\t...\n\tpmd \u003d pmd_offset(pgd, PHYS_OFFSET);\n\nto get the pmd you want.  However, pgd_offset() takes the mm_struct,\nnot the (unattached) pgd we just allocated.  So, instead use:\n\n        pgd \u003d pgd_alloc(\u0026init_mm);\n        pmd \u003d pmd_offset(pgd + pgd_index(PHYS_OFFSET), PHYS_OFFSET);\n\nReported-by: Antti P Miettinen \u003cananaza@iki.fi\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "afd2fc02ab7bae6062671c5ca80dd34c34a63fb7",
      "tree": "6048ce3ba252a95ac2195b680caa2b55c384073e",
      "parents": [
        "1f4de5a0e3b4a4b8afa2cddb46429d32e1053c14",
        "214c6a7ed13e01cab2addeef56124067e4d20147"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Thu Aug 07 11:05:25 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Aug 07 11:06:47 2008 +0100"
      },
      "message": "Merge branch \u0027for-rmk\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6\n\nConflicts:\n\n\tarch/arm/mach-pxa/generic.c\n\tarch/arm/mach-pxa/pxa25x.c\n\tarch/arm/mach-pxa/pxa27x.c\n\tarch/arm/mach-pxa/pxa2xx.c\n\tarch/arm/mach-pxa/pxa3xx.c\n\tarch/arm/mach-pxa/reset.c\n\tarch/arm/mach-pxa/spitz.c\n\tarch/arm/mach-pxa/tosa.c\n\tdrivers/watchdog/sa1100_wdt.c\n"
    },
    {
      "commit": "1f4de5a0e3b4a4b8afa2cddb46429d32e1053c14",
      "tree": "751eb9ccc39fe9506990fe052c9adadf1a541e8b",
      "parents": [
        "a09e64fbc0094e3073dbb09c3b4bfe4ab669244b"
      ],
      "author": {
        "name": "Jonathan Cameron",
        "email": "jic23@cam.ac.uk",
        "time": "Mon Aug 04 14:41:27 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Aug 07 10:25:11 2008 +0100"
      },
      "message": "[ARM] 5185/1: Fix spi num_chipselect for lubbock\n\nChange num_chipselect for lubbock ssp master to reflect requirement\nof spi subsystem that all buses have at least 1 chip select.\n\nSigned-off-by: Jonathan Cameron \u003cjic23@cam.ac.uk\u003e\nAcked-by: Eric Miao \u003ceric.miao@marvell.com\u003e\nAcked-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "a09e64fbc0094e3073dbb09c3b4bfe4ab669244b",
      "tree": "69689f467179891b498bd7423fcf61925173db31",
      "parents": [
        "a1b81a84fff05dbfef45b7012c26e1fee9973e5d"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Tue Aug 05 16:14:15 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Aug 07 09:55:48 2008 +0100"
      },
      "message": "[ARM] Move include/asm-arm/arch-* to arch/arm/*/include/mach\n\nThis just leaves include/asm-arm/plat-* to deal with.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "4fb8af10d0fd09372d52966b76922b9e82bbc950",
      "tree": "d240e4d40357583e3f3eb228dccf20122a5b31ed",
      "parents": [
        "f44f82e8a20b98558486eb14497b2f71c78fa325",
        "64a99d2a8c3ed5c4e39f3ae1cc682aa8fd3977fc"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Thu Aug 07 09:55:03 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Aug 07 09:55:03 2008 +0100"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-fixes\n"
    },
    {
      "commit": "f44f82e8a20b98558486eb14497b2f71c78fa325",
      "tree": "4fcbd691d4c75b4ec89e8082e742294f4a5fa3ee",
      "parents": [
        "be509729356b7433f73df2b9a966674a437fbbc1"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Aug 02 19:36:14 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Aug 07 09:54:39 2008 +0100"
      },
      "message": "[ARM] Add support for arch/arm/mach-*/include and arch/arm/plat-*/include\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "be509729356b7433f73df2b9a966674a437fbbc1",
      "tree": "5a3e90513c106f9dcf08405e4ebd3599fd14413c",
      "parents": [
        "0f8469a54f7bd65f2c740a5480c56260dc8a7ae0"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Mon Aug 04 10:41:28 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Aug 07 09:40:08 2008 +0100"
      },
      "message": "[ARM] Remove asm/hardware.h, use asm/arch/hardware.h instead\n\nRemove includes of asm/hardware.h in addition to asm/arch/hardware.h.\nThen, since asm/hardware.h only exists to include asm/arch/hardware.h,\nupdate everything to directly include asm/arch/hardware.h and remove\nasm/hardware.h.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "0f8469a54f7bd65f2c740a5480c56260dc8a7ae0",
      "tree": "4f922bf707c379352eb4c077fbb0a8c48c07fc1f",
      "parents": [
        "897d85275d7f061ff0ec838bd5224a9e76ad07d6"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sun Aug 03 15:06:16 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Aug 07 09:40:04 2008 +0100"
      },
      "message": "[ARM] Eliminate useless includes of asm/mach-types.h\n\nThere are 43 includes of asm/mach-types.h by files that don\u0027t\nreference anything from that file.  Remove these unnecessary\nincludes.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "897d85275d7f061ff0ec838bd5224a9e76ad07d6",
      "tree": "3389a9f0e5c25732f81bbda6e6a38c7131ab36b8",
      "parents": [
        "bccf650270a94cec6e9238743e84c6e01de30c70"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sun Aug 03 15:04:04 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Aug 07 09:39:37 2008 +0100"
      },
      "message": "[ARM] Fix circular include dependency with IRQ headers\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "04fef228fb00dd79475a2313f4ba73b4fbfe2faa",
      "tree": "fee94286fb6b53562e1f9a3c2d6f7f20f8014346",
      "parents": [
        "ab277121426edca2ee0601fc6318c9467350771e"
      ],
      "author": {
        "name": "Eric Miao",
        "email": "eric.miao@marvell.com",
        "time": "Tue Jul 29 14:26:00 2008 +0800"
      },
      "committer": {
        "name": "Eric Miao",
        "email": "eric.miao@marvell.com",
        "time": "Tue Aug 05 09:26:02 2008 +0800"
      },
      "message": "[ARM] pxa: introduce reset_status and clear_reset_status for driver\u0027s usage\n\nDue to the problem of reset status bits being handled by different\nregisters between pxa2xx and pxa3xx, introduce a global reset_status\nvariable, initialized by SoC-specific code and later being used by\nother drivers.\n\nAnd also introduce clear_reset_status(), which is used to clear the\ncorresponding status bits. Pass RESET_STATUS_ALL to clear all bits.\n\nSigned-off-by: Eric Miao \u003ceric.miao@marvell.com\u003e\n"
    },
    {
      "commit": "ab277121426edca2ee0601fc6318c9467350771e",
      "tree": "105f3a8042214e859c78801030fb3c305ac5b849",
      "parents": [
        "2b12a4c524812fb3f6ee590a02e65b95c8c32229"
      ],
      "author": {
        "name": "Eric Miao",
        "email": "eric.miao@marvell.com",
        "time": "Tue Jul 29 14:08:14 2008 +0800"
      },
      "committer": {
        "name": "Eric Miao",
        "email": "eric.miao@marvell.com",
        "time": "Tue Aug 05 09:25:19 2008 +0800"
      },
      "message": "[ARM] pxa: introduce reset.h for reset specific header information\n\nSigned-off-by: Eric Miao \u003ceric.miao@marvell.com\u003e\n"
    },
    {
      "commit": "7e31aa11fc672bbe0dd0da59513c9efe3809ced7",
      "tree": "0aafe6a0045230950ce6b26579a053da12614a49",
      "parents": [
        "071f4924844c435a3ae0cdbab7d7df2f1da85713",
        "9cb7117fa4858468014f76bd996076985111e955"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 03 10:39:02 2008 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 03 10:39:02 2008 -0700"
      },
      "message": "Merge branch \u0027for-linus\u0027 of master.kernel.org:/home/rmk/linux-2.6-arm\n\n* \u0027for-linus\u0027 of master.kernel.org:/home/rmk/linux-2.6-arm:\n  [ARM] 5182/1: pxa: Fix pcm990 compilation\n  [ARM] Fix explicit asm(-arm)?/arch-foo references\n  [ARM] move include/asm-arm to arch/arm/include/asm\n  [ARM] Remove explicit dependency for misc.o from compressed/Makefile\n  [ARM] initrd: claim initrd memory exclusively\n  [ARM] pxa: add support for L2 outer cache on XScale3 (attempt 2)\n  [ARM] 5180/1: at91: Fix at91_nand -\u003e atmel_nand rename fallout\n  [ARM] add Sascha Hauer as Freescale i.MX Maintainer\n  [ARM] i.MX: add missing clock functions exports\n  [ARM] i.MX: remove set_imx_fb_info() export\n  [ARM] mx1ads: make mmc platform data available for modules\n  [ARM] mx2: add missing Kconfig dependency\n"
    },
    {
      "commit": "9cb7117fa4858468014f76bd996076985111e955",
      "tree": "084c3b1da8d3641e94c755536b49973dca1a0fdf",
      "parents": [
        "bccf650270a94cec6e9238743e84c6e01de30c70"
      ],
      "author": {
        "name": "Guennadi Liakhovetski",
        "email": "g.liakhovetski@gmx.de",
        "time": "Sun Aug 03 00:02:35 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sun Aug 03 10:17:59 2008 +0100"
      },
      "message": "[ARM] 5182/1: pxa: Fix pcm990 compilation\n\nCompiling pcm990 produces an error:\n\nIn file included from arch/arm/mach-pxa/pcm990-baseboard.c:25:\ninclude/linux/ide.h:645: error: \u0027CONFIG_IDE_MAX_HWIFS\u0027 undeclared here (not in a function)\n\nFix it by removing unneeded header include.\n\nSigned-off-by: Guennadi Liakhovetski \u003cg.liakhovetski@gmx.de\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "bccf650270a94cec6e9238743e84c6e01de30c70",
      "tree": "7e58444f9a976a1d680cfe3d2d47677fabdaa048",
      "parents": [
        "4baa9922430662431231ac637adedddbb0cfb2d7"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Aug 02 22:33:18 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Aug 02 22:35:16 2008 +0100"
      },
      "message": "[ARM] Fix explicit asm(-arm)?/arch-foo references\n\nNo file should be explicitly referencing its own platform headers\nby specifying an absolute include path.  Fix these paths to use\nstandard \u003casm/arch/...\u003e includes.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "4baa9922430662431231ac637adedddbb0cfb2d7",
      "tree": "e8fb765ce3e41c01f33de34a0bc9494f0ae19818",
      "parents": [
        "ff4db0a043a5dee7180bdffd178e61cd02812c68"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Aug 02 10:55:55 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Aug 02 21:32:35 2008 +0100"
      },
      "message": "[ARM] move include/asm-arm to arch/arm/include/asm\n\nMove platform independent header files to arch/arm/include/asm, leaving\nthose in asm/arch* and asm/plat* alone.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "ff4db0a043a5dee7180bdffd178e61cd02812c68",
      "tree": "5e1ff7cf6c20be0b162b9a6dc94b57348e977326",
      "parents": [
        "b962a286e500c6259af8ba133361f8528eed9172"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Aug 02 15:21:31 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Aug 02 15:27:44 2008 +0100"
      },
      "message": "[ARM] Remove explicit dependency for misc.o from compressed/Makefile\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "9a5467fd600669cda488771dac3e951034fe2b08",
      "tree": "20c3c73ff3571e525193aca20d3602161b4e90be",
      "parents": [
        "676056132425ac425d7215cdaa8bd25582e07966",
        "00b1304c4ca81dd893973cc620b87a5c3ff3f660"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Aug 01 11:35:16 2008 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Aug 01 11:35:16 2008 -0700"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6: (46 commits)\n  tcp: MD5: Fix IPv6 signatures\n  skbuff: add missing kernel-doc for do_not_encrypt\n  net/ipv4/route.c: fix build error\n  tcp: MD5: Fix MD5 signatures on certain ACK packets\n  ipv6: Fix ip6_xmit to send fragments if ipfragok is true\n  ipvs: Move userspace definitions to include/linux/ip_vs.h\n  netdev: Fix lockdep warnings in multiqueue configurations.\n  netfilter: xt_hashlimit: fix race between htable_destroy and htable_gc\n  netfilter: ipt_recent: fix race between recent_mt_destroy and proc manipulations\n  netfilter: nf_conntrack_tcp: decrease timeouts while data in unacknowledged\n  irda: replace __FUNCTION__ with __func__\n  nsc-ircc: default to dongle type 9 on IBM hardware\n  bluetooth: add quirks for a few hci_usb devices\n  hysdn: remove the packed attribute from PofTimStamp_tag\n  isdn: use the common ascii hex helpers\n  tg3: adapt tg3 to use reworked PCI PM code\n  atm: fix direct casts of pointers to u32 in the InterPhase driver\n  atm: fix const assignment/discard warnings in the ATM networking driver\n  net: use the common ascii hex helpers\n  random32: seeding improvement\n  ...\n"
    },
    {
      "commit": "623fa579e61f250c1913c70257ef3a753820bb68",
      "tree": "179fcff4a0469bfa9a9ce5cab14fff6141810cd0",
      "parents": [
        "d65f5c5803d9cd6fa0b540a0dddf956be671bc36",
        "e4c094a595ba8ea402e6b2153f7bbf6ef039eea0"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Aug 01 11:29:54 2008 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Aug 01 11:29:54 2008 -0700"
      },
      "message": "Merge git://git.infradead.org/mtd-2.6\n\n* git://git.infradead.org/mtd-2.6:\n  [MTD] [NAND] drivers/mtd/nand/nandsim.c: fix printk warnings\n  [MTD] [NAND] Blackfin NFC Driver: Cleanup the error exit path of bf5xx_nand_probe function\n  [MTD] [NAND] Blackfin NFC Driver: use standard dev_err() rather than printk()\n  [MTD] [NAND] Blackfin NFC Driver: enable Blackfin nand HWECC support by default\n  [MTD] [NAND] Blackfin NFC Driver: add proper devinit/devexit markings to probe/remove functions\n  [MTD] [NAND] Blackfin NFC Driver: add support for the ECC layout the Blackfin bootrom uses\n  [MTD] [NAND] Blackfin NFC Driver: fix bug - hw ecc calc by making sure we extract 11 bits from each register instead of 10\n  [MTD] [NAND] Blackfin NFC Driver: fix bug - do not clobber the status from the first 256 bytes if operating on 512 pages\n  [MTD] [NAND] diskonchip.c fix sparse endian warnings\n  [MTD] [NAND] drivers/mtd/nand/nandsim.c needs div64.h\n  [JFFS2] Fix allocation of summary buffer\n  Fix rename of at91_nand -\u003e atmel_nand\n  [MTD] [NOR] drivers/mtd/chips/jedec_probe.c: fix Am29DL800BB device ID\n  [MTD] MTD_DEBUG always does compile-time typechecks\n  [MTD] DataFlash: bugfix, binary page sizes now handled\n  [MTD] [NAND] fsl_elbc_nand.c: fix printk warning\n  [MTD] [NAND] nandsim: support random page read command\n  [MTD] [NAND] fix subpage read for small page NAND\n"
    },
    {
      "commit": "f6ed6f78d46b43b6d908b39ed3322f7cda23f4a8",
      "tree": "7f2fc6d0617e865ab4fac8ddd776ba3ff0da64eb",
      "parents": [
        "4a22442faeb33bdf34016a7b1f6b3d6ecd4e33e5"
      ],
      "author": {
        "name": "Pieter du Preez",
        "email": "pdupreez@gmail.com",
        "time": "Fri Aug 01 10:06:40 2008 +0100"
      },
      "committer": {
        "name": "David Woodhouse",
        "email": "David.Woodhouse@intel.com",
        "time": "Fri Aug 01 10:06:40 2008 +0100"
      },
      "message": "Fix rename of at91_nand -\u003e atmel_nand\n\nStructs called at91_nand_data where renamed to atmel_nand_data\nand configs called *MTD_NAND_AT91* where renamed to\n*MTD_NAND_ATMEL*. This was unfortunately not done consistently,\ncausing NAND chips not being initialised on several ARM boards.\n\nI am aware that the author of the original change did not rename\nMTD_NAND_AT91_BUSWIDTH to MTD_NAND_ATMEL_BUSWIDTH, for example.\nAll *MTD_NAND_AT91* where renamed to *MTD_NAND_ATMEL* in order\nto keep naming consistency.\n\nThis patch was only tested on a MACH_SAM9_L9260, as this is the\nonly ARM board I have to my disposal.\n\nBefore this patch:\n\n$ git-ls-files |xargs grep atmel_nand |wc -l\n105\n$ git-ls-files |xargs grep at91_nand |wc -l\n4\n$ git-ls-files |xargs grep MTD_NAND_ATMEL |wc -l\n8\n$ git-ls-files |xargs grep MTD_NAND_AT91 |wc -l\n47\n\nAfter this patch:\n\n$ git-ls-files |xargs grep atmel_nand |wc -l\n109\n$ git-ls-files |xargs grep at91_nand |wc -l\n0\n$ git-ls-files |xargs grep MTD_NAND_ATMEL |wc -l\n55\n$ git-ls-files |xargs grep MTD_NAND_AT91 |wc -l\n0\n\nSigned-off-by: Pieter du Preez \u003cpdupreez@gmail.com\u003e\nSigned-off-by: David Woodhouse \u003cDavid.Woodhouse@intel.com\u003e\n"
    },
    {
      "commit": "e62112c53acfefc67ccfbdc1895eebccf866bc1b",
      "tree": "46c99ef13fc1764016ca8d2bb749f252f70cfab9",
      "parents": [
        "031cf19e6f63941506c9baf76ac7adac06edcf08",
        "68905eb4dc9c691ba09df767ac0641395025cef6"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Jul 30 15:44:30 2008 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Jul 30 15:44:30 2008 -0700"
      },
      "message": "Merge branch \u0027upstream-davem\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6\n"
    },
    {
      "commit": "b962a286e500c6259af8ba133361f8528eed9172",
      "tree": "cdb19c3ac525cb025dbfb4612decab9e1b030f7b",
      "parents": [
        "905a09d57afcc49511de18a95605c11ad9c88649"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Jul 30 21:24:56 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Jul 30 21:24:56 2008 +0100"
      },
      "message": "[ARM] initrd: claim initrd memory exclusively\n\nClaim the initrd memory exclusively, and order other memory\nreservations beforehand.  This allows us to determine whether\nthe initrd memory was overwritten, and disable the initrd in\nthat case.\n\nThis avoids a \u0027bad page state\u0027 bug.\n\nTested-by: Ralph Siemsen \u003cralphs@netwinder.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "ba7e4763437561763b6cca14a41f1d2a7def23e2",
      "tree": "9eec9ecef01a52cc32946dd12c54a804e8e81ab9",
      "parents": [
        "c080909eef2b3e7fba70f57cde3264fba95bdf09"
      ],
      "author": {
        "name": "Liam Girdwood",
        "email": "lg@opensource.wolfsonmicro.com",
        "time": "Wed Apr 30 17:13:42 2008 +0100"
      },
      "committer": {
        "name": "Liam Girdwood",
        "email": "lg@opensource.wolfsonmicro.com",
        "time": "Wed Jul 30 10:10:22 2008 +0100"
      },
      "message": "regulator: core kbuild files\n\nThis patch adds kernel build support for the regulator core.\n\nSigned-off-by: Philipp Zabel \u003cphilipp.zabel@gmail.com\u003e\nSigned-off-by: Liam Girdwood \u003clg@opensource.wolfsonmicro.com\u003e\n"
    },
    {
      "commit": "16b237dc44c716dbd9aeee4ab8aa9c33a62d5998",
      "tree": "8375078159747d57c7f1b3d42b5a0b48afaad4a9",
      "parents": [
        "8051367586314ab005dacead790a3b2e4e3dcc58",
        "ac0a2d0c8ab18045ab217339a71e76c76e186ede"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Tue Jul 29 18:23:13 2008 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@redhat.com",
        "time": "Tue Jul 29 18:23:13 2008 -0400"
      },
      "message": "Merge branch \u0027for-2.6.27\u0027 of git://git.marvell.com/mv643xx_eth into upstream-fixes\n"
    },
    {
      "commit": "1d9b9f6a53d77ed801ba875f937d6dabbfc381ce",
      "tree": "36ea93b80a444c3b37111e352790ebc07f29379f",
      "parents": [
        "a3ad7f128c637b7612ebeacb1f85fec933bb1195",
        "12c0b20fa4afb5c8a377d6987fb2dcf353e1dce1"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Mon Jul 28 18:14:24 2008 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Mon Jul 28 18:14:24 2008 -0700"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6\n\n* \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6: (21 commits)\n  x86/PCI: use dev_printk when possible\n  PCI: add D3 power state avoidance quirk\n  PCI: fix bogus \"\u0027device\u0027 may be used uninitialized\" warning in pci_slot\n  PCI: add an option to allow ASPM enabled forcibly\n  PCI: disable ASPM on pre-1.1 PCIe devices\n  PCI: disable ASPM per ACPI FADT setting\n  PCI MSI: Don\u0027t disable MSIs if the mask bit isn\u0027t supported\n  PCI: handle 64-bit resources better on 32-bit machines\n  PCI: rewrite PCI BAR reading code\n  PCI: document pci_target_state\n  PCI hotplug: fix typo in pcie hotplug output\n  x86 gart: replace to_pages macro with iommu_num_pages\n  x86, AMD IOMMU: replace to_pages macro with iommu_num_pages\n  iommu: add iommu_num_pages helper function\n  dma-coherent: add documentation to new interfaces\n  Cris: convert to using generic dma-coherent mem allocator\n  Sh: use generic per-device coherent dma allocator\n  ARM: support generic per-device coherent dma mem\n  Generic dma-coherent: fix DMA_MEMORY_EXCLUSIVE\n  x86: use generic per-device dma coherent allocator\n  ...\n"
    },
    {
      "commit": "93686ae8357c1b1e37e8dfc96547f807e7a93b4b",
      "tree": "7b3040b43cbf78d946538ebab8fb3b158a4d4d64",
      "parents": [
        "4d9c377c81d37740b25cacf025f95c084eafabbb"
      ],
      "author": {
        "name": "David Brownell",
        "email": "dbrownell@users.sourceforge.net",
        "time": "Mon Jul 28 15:46:22 2008 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Mon Jul 28 16:30:20 2008 -0700"
      },
      "message": "arm: fix HAVE_CLK merge goof\n\nThis fixes a merge goof whereby ARCH_EP93XX got the \"select HAVE_CLK\" line\nwhich belongs instead with ARCH_AT91.\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "905a09d57afcc49511de18a95605c11ad9c88649",
      "tree": "3e027f413846fb0b392068183dcc840b5aea64ef",
      "parents": [
        "e76e3ac69e62d3f93e935526bc9afa371e7f38ba"
      ],
      "author": {
        "name": "Eric Miao",
        "email": "eric.miao@marvell.com",
        "time": "Fri Jun 06 16:34:03 2008 +0800"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Mon Jul 28 23:13:09 2008 +0100"
      },
      "message": "[ARM] pxa: add support for L2 outer cache on XScale3 (attempt 2)\n\n(20072fd0c93349e19527dd2fa9588b4335960e62 lost most of its changes\nsomehow, came from a mbox archive applied with git-am.  No idea\nwhat happened.  This puts back the missing bits.  --rmk)\n\nThe initial patch from Lothar, and Lennert make it into a cleaner\none, modified and tested on PXA320 by Eric Miao.\n\nThis patch moves the L2 cache operations out of proc-xsc3.S into\ndedicated outer cache support code.\n\nCACHE_XSC3L2 can be deselected so no L2 cache specific code will be\nlinked in, and that L2 enable bit will not be set, this applies to\nthe following cases:\n\n    a. _only_ PXA300/PXA310 support included and no L2 cache wanted\n    b. PXA320 support included, but want L2 be disabled\n\nSo the enabling of L2 depends on two things:\n\n    - CACHE_XSC3L2 is selected\n    - and L2 cache is present\n\nWhere the latter is only a safeguard (previous testing shows it works\nOK even when this bit is turned on).\n\nIXP series of processors with XScale3 cannot disable L2 cache for the\nmoment since they depend on the L2 cache for its coherent memory, so\nIXP may always select CACHE_XSC3L2.\n\nOther L2 relevant bits are always turned on (i.e. the original code\nenclosed by #if L2_CACHE_ENABLED .. #endif), as they showed no side\neffects. Specifically, these bits are:\n\n   - OC bits in TTBASE register (table walk outer cache attributes)\n   - LLR Outer Cache Attributes (OC) in Auxiliary Control Register\n\nSigned-off-by: Lothar WaÃ\u003c9f\u003emann \u003cLW@KARO-electronics.de\u003e\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@marvell.com\u003e\nSigned-off-by: Eric Miao \u003ceric.miao@marvell.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "cb28a1bbdb4790378e7366d6c9ee1d2340b84f92",
      "tree": "316436f77dac75335fd2c3ef5f109e71606c50d3",
      "parents": [
        "b6d4f7e3ef25beb8c658c97867d98883e69dc544",
        "f934fb19ef34730263e6afc01e8ec27a8a71470f"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Tue Jul 29 00:07:55 2008 +0200"
      },
      "committer": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Tue Jul 29 00:07:55 2008 +0200"
      },
      "message": "Merge branch \u0027linus\u0027 into core/generic-dma-coherent\n\nConflicts:\n\n\tarch/x86/Kconfig\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\n"
    },
    {
      "commit": "e76e3ac69e62d3f93e935526bc9afa371e7f38ba",
      "tree": "2e1e712fc4b633a73187876e235381137abb0173",
      "parents": [
        "7c896834735f497cc405068d16a51717f993af7f",
        "86183a5fd0ce67cb28d6e4af4775105edc8872b7"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Mon Jul 28 18:45:57 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Mon Jul 28 18:45:57 2008 +0100"
      },
      "message": "Merge branch \u0027for-rmk\u0027 of git://pasiphae.extern.pengutronix.de/git/imx/linux-2.6\n"
    },
    {
      "commit": "7c896834735f497cc405068d16a51717f993af7f",
      "tree": "1de88e4568f65e9bcd90529fe2c864aba7c4a052",
      "parents": [
        "c9272c4f9fbe2087beb3392f526dc5b19efaa56b"
      ],
      "author": {
        "name": "Haavard Skinnemoen",
        "email": "haavard.skinnemoen@atmel.com",
        "time": "Mon Jul 28 16:57:22 2008 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Mon Jul 28 17:00:02 2008 +0100"
      },
      "message": "[ARM] 5180/1: at91: Fix at91_nand -\u003e atmel_nand rename fallout\n\nstruct at91_nand has been renamed atmel_nand. Fix the four boards that\nwere added since the patch was created.\n\nSigned-off-by: Haavard Skinnemoen \u003chaavard.skinnemoen@atmel.com\u003e\nAcked-by: Andrew Victor \u003clinux@maxim.org.za\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "79a13b29782e252d4f4e8f6111b978519b876cf7",
      "tree": "5845a6f6b9f8c5f12ca4baa31bc59824e2675625",
      "parents": [
        "d7098e31404a25f70f82aa7513e7f5893763576b"
      ],
      "author": {
        "name": "Paulius Zaleckas",
        "email": "paulius.zaleckas@teltonika.lt",
        "time": "Mon Jul 21 18:44:13 2008 +0300"
      },
      "committer": {
        "name": "Sascha Hauer",
        "email": "s.hauer@pengutronix.de",
        "time": "Mon Jul 28 11:29:22 2008 +0200"
      },
      "message": "[ARM] i.MX: add missing clock functions exports\n\nExport missing Clock API symbols.\n\nSigned-off-by: Paulius Zaleckas \u003cpaulius.zaleckas@teltonika.lt\u003e\nSigned-off-by: Sascha Hauer \u003cs.hauer@pengutronix.de\u003e\n"
    },
    {
      "commit": "d7098e31404a25f70f82aa7513e7f5893763576b",
      "tree": "d5057a1b6603452d69a7c4f16786e083c82b46f2",
      "parents": [
        "2809fc06f2fc0aac180644cabf9330e50f015bbb"
      ],
      "author": {
        "name": "Paulius Zaleckas",
        "email": "paulius.zaleckas@teltonika.lt",
        "time": "Thu Jul 17 19:10:20 2008 +0300"
      },
      "committer": {
        "name": "Sascha Hauer",
        "email": "s.hauer@pengutronix.de",
        "time": "Mon Jul 28 11:29:21 2008 +0200"
      },
      "message": "[ARM] i.MX: remove set_imx_fb_info() export\n\nRemove not needed export and fix warning:\n\nWARNING: vmlinux.o(__ksymtab+0x400): Section mismatch in reference from the variable __ksymtab_set_imx_fb_info to the function .init.text:set_imx_fb_info()\nThe symbol set_imx_fb_info is exported and annotated __init\nFix this by removing the __init annotation of set_imx_fb_info or drop the export.\n\nSigned-off-by: Paulius Zaleckas \u003cpaulius.zaleckas@teltonika.lt\u003e\nSigned-off-by: Sascha Hauer \u003cs.hauer@pengutronix.de\u003e\n"
    }
  ],
  "next": "2809fc06f2fc0aac180644cabf9330e50f015bbb"
}
