)]}'
{
  "log": [
    {
      "commit": "f751d50f6dea1446797c9a31f5c183002e5780a8",
      "tree": "9d8bc20f7f0fcb26e53865dbe10e5526e4dd3483",
      "parents": [
        "82d821ddca8f5c990067cc37543010aa9346a172"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Fri Mar 24 03:18:21 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Mar 24 07:33:28 2006 -0800"
      },
      "message": "[PATCH] show MCP menu only on ARCH_SA1100\n\nOn architectures like i386, the \"Multimedia Capabilities Port drivers\" menu is\nvisible, but it can\u0027t be visited since it contains nothing usable for\n!ARCH_SA1100.\n\nThis patch therefore shows this menu only on ARCH_SA1100.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "413b486e18587fd53c9954252e6648f9450c734e",
      "tree": "de5bb0cea40571fb97d93b54746cf21f214df971",
      "parents": [
        "4866b124a1ded3b94b0cea0bd543f46ffa9a3943"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@arm.linux.org.uk",
        "time": "Thu Jan 05 14:39:56 2006 +0000"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Fri Jan 13 11:26:08 2006 -0800"
      },
      "message": "[PATCH] Add MCP bus_type probe and remove methods\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "a621aaed690b9439141c555941b6af53873f6ff1",
      "tree": "47d08433a946e34299556a9e23482582ffb911c0",
      "parents": [
        "593195f9b2309693f27b402f34573f7920b82c3e"
      ],
      "author": {
        "name": "Arjan van de Ven",
        "email": "arjan@infradead.org",
        "time": "Thu Jan 12 18:43:35 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Jan 12 18:43:35 2006 +0000"
      },
      "message": "[MMC+MFD] Convert mmc to mutexes\n\nconvert mfd and mmc to mutexes\n\nSigned-off-by: Arjan van de Ven \u003carjan@infradead.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "44fce35f29a7f2d976d9160bfbc55635b459a6a0",
      "tree": "99ea5c540658e8c02945b00041d904474766b968",
      "parents": [
        "dda6ebde96044e9b5f1b14588659b39b4e6c08e7"
      ],
      "author": {
        "name": "Nicolas Kaiser",
        "email": "nikai@nikai.net",
        "time": "Sun Jan 08 01:03:37 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Jan 08 20:13:59 2006 -0800"
      },
      "message": "[PATCH] drivers/mfd: header included twice\n\nlinux/delay.h included twice\n\nSigned-off-by: Nicolas Kaiser \u003cnikai@nikai.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9ded96f24c3a5fcbef954e88c443385a1af37eb9",
      "tree": "49f43337e2b8d63a5a28402a15d99fe27d8d2a1c",
      "parents": [
        "705b6c7b34f2621f95f606d0e683daa10cdb8eb9"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk+lkml@arm.linux.org.uk",
        "time": "Sun Jan 08 01:02:07 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Jan 08 20:13:46 2006 -0800"
      },
      "message": "[PATCH] IRQ type flags\n\nSome ARM platforms have the ability to program the interrupt controller to\ndetect various interrupt edges and/or levels.  For some platforms, this is\ncritical to setup correctly, particularly those which the setting is dependent\non the device.\n\nCurrently, ARM drivers do (eg) the following:\n\n\terr \u003d request_irq(irq, ...);\n\n\tset_irq_type(irq, IRQT_RISING);\n\nHowever, if the interrupt has previously been programmed to be level sensitive\n(for whatever reason) then this will cause an interrupt storm.\n\nHence, if we combine set_irq_type() with request_irq(), we can then safely set\nthe type prior to unmasking the interrupt.  The unfortunate problem is that in\norder to support this, these flags need to be visible outside of the ARM\narchitecture - drivers such as smc91x need these flags and they\u0027re\ncross-architecture.\n\nFinally, the SA_TRIGGER_* flag passed to request_irq() should reflect the\nproperty that the device would like.  The IRQ controller code should do its\nbest to select the most appropriate supported mode.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1393c3edc307e0a2ec4274f67e342907ffd7deb5",
      "tree": "08e9e2bba7013301b30ea0a51ba9651a60f61620",
      "parents": [
        "68799398cea44b81d1e919f842d8d84d471053d5"
      ],
      "author": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Mon Dec 12 00:37:36 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:45 2005 -0800"
      },
      "message": "[PATCH] input: fix ucb1x00-ts breakage after conversion to dynamic input_dev allocation\n\nThe bd622663192e8ebebb27dc1d9397f352a82d2495 commit broke the UCB1x00\ntouchscreen driver since the idev structure was assumed to be into the ts\nstructure, simply casting the former to the later in a couple places.\n\nThis patch fixes those, and also cache the idev pointer between multiple\ncalls to input_report_abs() to avoid growing the compiled code needlessly.\n\nSigned-off-by: Nicolas Pitre \u003cnico@cam.org\u003e\nCc: Dmitry Torokhov \u003cdtor_core@ameritech.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3ae5eaec1d2d9c0cf53745352e7d4b152810ba24",
      "tree": "d8825be54cefb6ad6707478d719c8e30605bee7b",
      "parents": [
        "00d3dcdd96646be6059cc21f2efa94c4edc1eda5"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Nov 09 22:32:44 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Nov 09 22:32:44 2005 +0000"
      },
      "message": "[DRIVER MODEL] Convert platform drivers to use struct platform_driver\n\nThis allows us to eliminate the casts in the drivers, and eventually\nremove the use of the device_driver function pointer methods for\nplatform device drivers.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\nAcked-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "8c65b4a60450590e79a28e9717ceffa9e4debb3f",
      "tree": "e0e42b5faee0a1c44746a36d9df7a8fbb2a2c24c",
      "parents": [
        "6fdcc2162285a8fc96ab12ff85086c37bceaa494"
      ],
      "author": {
        "name": "Tim Schmielau",
        "email": "tim@physik3.uni-rostock.de",
        "time": "Mon Nov 07 00:59:43 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Nov 07 07:53:41 2005 -0800"
      },
      "message": "[PATCH] fix remaining missing includes\n\nFix more include file problems that surfaced since I submitted the previous\nfix-missing-includes.patch.  This should now allow not to include sched.h\nfrom module.h, which is done by a followup patch.\n\nSigned-off-by: Tim Schmielau \u003ctim@physik3.uni-rostock.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4fd5f8267dd37aaebadfabe71d9c808821eea05a",
      "tree": "50774592eaba942cf378fca731d307f901b737b7",
      "parents": [
        "eb16292ba8a6655a560ab10a7d73a7816f0c0ac0",
        "8576762ff5d109b841fcf4e7d3883e0cf794f3cf"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Oct 31 07:32:56 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Oct 31 07:32:56 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-drvmodel\n\nManual #include fixups for clashes - there may be some unnecessary\n"
    },
    {
      "commit": "1753298947afe5eb56da755bc057f1868f345ec1",
      "tree": "029133570ff8c2f0f642ff985b19dd64faf40dfe",
      "parents": [
        "5ecdb02c9d8b7f76108da6fcb2a66fdf5eed3116"
      ],
      "author": {
        "name": "Pavel Machek",
        "email": "pavel@ucw.cz",
        "time": "Sun Oct 30 23:38:01 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sun Oct 30 23:38:01 2005 +0000"
      },
      "message": "[ARM] Sharp sl-5500 touchscreen support\n\nThis adds support for sharp zaurus sl-5500 touchscreen.  It introduces\nsome not-too-nice ifs, but I guess copying whole ucb1x00-ts.c would be\nbad idea...\n\nSigned-off-by: Pavel Machek \u003cpavel@suse.cz\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "d052d1beff706920e82c5d55006b08e256b5df09",
      "tree": "dac91b70361b405ab8e15207f514a2f3e991e93d",
      "parents": [
        "8a212ab6b8a4ccc6f3c3d1beba5f92655c576404"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Oct 29 19:07:23 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Oct 29 19:07:23 2005 +0100"
      },
      "message": "Create platform_device.h to contain all the platform device details.\nConvert everyone who uses platform_bus_type to include\nlinux/platform_device.h.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\nAcked-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "9480e307cd88ef09ec9294c7d97ebec18e6d2221",
      "tree": "967e26d3a23c24dd52b114d672312c207714308c",
      "parents": [
        "a3a3395e487abc4c1371fe319a8ecbb3913a70a4"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@arm.linux.org.uk",
        "time": "Fri Oct 28 09:52:56 2005 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Fri Oct 28 09:52:56 2005 -0700"
      },
      "message": "[PATCH] DRIVER MODEL: Get rid of the obsolete tri-level suspend/resume callbacks\n\nIn PM v1, all devices were called at SUSPEND_DISABLE level.  Then\nall devices were called at SUSPEND_SAVE_STATE level, and finally\nSUSPEND_POWER_DOWN level.  However, with PM v2, to maintain\ncompatibility for platform devices, I arranged for the PM v2\nsuspend/resume callbacks to call the old PM v1 suspend/resume\ncallbacks three times with each level in order so that existing\ndrivers continued to work.\n\nSince this is obsolete infrastructure which is no longer necessary,\nwe can remove it.  Here\u0027s an (untested) patch to do exactly that.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "bd622663192e8ebebb27dc1d9397f352a82d2495",
      "tree": "b7d8e7ca6318e08238fb49dc1906b9f155daa115",
      "parents": [
        "c5b7c7c395a34f12cdf246d66c1feeff2933d584"
      ],
      "author": {
        "name": "Dmitry Torokhov",
        "email": "dtor_core@ameritech.net",
        "time": "Thu Sep 15 02:01:48 2005 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Fri Oct 28 09:52:52 2005 -0700"
      },
      "message": "[PATCH] Input: convert ucb1x00-ts to dynamic input_dev allocation\n\nInput: convert ucb1x00-ts to dynamic input_dev allocation\n\nThis is required for input_dev sysfs integration\n\nSigned-off-by: Dmitry Torokhov \u003cdtor@mail.ru\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "585f54575d832506bbe9b5a2f435f37b81efc849",
      "tree": "454ca3e7722c2d07d2ab7d9461dd16845194f77f",
      "parents": [
        "dd0fc66fb33cd610bc1a5db8a5e232d34879b4d7"
      ],
      "author": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Mon Oct 10 18:22:17 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Mon Oct 10 18:22:17 2005 +0100"
      },
      "message": "[ARM] 2956/1: fix the \"Fix gcc4 build errors in ucb1x00-core.c\"\n\nPatch from Nicolas Pitre\n\ndrivers/mfd/ucb1x00-core.c: In function \u0027ucb1x00_probe\u0027:\ndrivers/mfd/ucb1x00-core.c:482: error: \u0027ucb1x00_class\u0027 undeclared (first use in this function)\n\nSigned-off-by: Nicolas Pitre \u003cnico@cam.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "a448a28589a6640736b8af1f2f57616c10bb37d5",
      "tree": "981b569982b0d0cc58db00b066e1f74d4941138a",
      "parents": [
        "c0758146adbe39514e75ac860ce7e49f865c2297"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Thu Oct 06 13:09:42 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Oct 06 13:09:42 2005 +0100"
      },
      "message": "[MFD] Fix gcc4 build errors in ucb1x00-core.c\n\ndrivers/mfd/ucb1x00-core.c:555: error: static declaration of \u0027ucb1x00_class\u0027 follows non-static declaration\ndrivers/mfd/ucb1x00.h:109: error: previous declaration of \u0027ucb1x00_class\u0027 was here\n\nSince ucb1x00_class isn\u0027t used by anything, remove the extern\ndeclaration and the symbol export.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "6b9ea4213e3a9c9b8de29a001a2b8d8799cbc1c9",
      "tree": "c678c9ace865ad4d4ebd4a6cb7daceb9cb0556e2",
      "parents": [
        "87e807b6c461bbd449496a4c3ab78ab164a4ba97"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Sep 24 10:24:37 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Sep 24 10:24:37 2005 +0100"
      },
      "message": "[MFD] Fix \"bious one-bit signed bitfield\" errors\n\nucb1x00-ts declared a couple of one-bit \u0027int\u0027 bitfields.\nMake them unsigned.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "5437775e0bc38d633c0a4b7660812f15b6693b69",
      "tree": "fd3068724ab7be73dbf9074d8655b06654b03581",
      "parents": [
        "48c92022ad264cb8084cee78a499f183b264e45f"
      ],
      "author": {
        "name": "Pavel Machek",
        "email": "pavel@suse.cz",
        "time": "Sun Sep 11 10:28:00 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sun Sep 11 10:28:00 2005 +0100"
      },
      "message": "[MFD] Cleanups suggested by Dmitri, Vojtech and lists.\n\nThese are small ucb1x00-ts cleanups, as suggested by Vojtech, Dmitri\nand the lists.\n\nSigned-off-by: Pavel Machek \u003cpavel@suse.cz\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "48c92022ad264cb8084cee78a499f183b264e45f",
      "tree": "2d888fb2a7663d0d7130f1d82f231f335d757fcb",
      "parents": [
        "acb45439a89c6830349c02405f00a7208db0a66b"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sun Sep 11 10:27:23 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sun Sep 11 10:27:23 2005 +0100"
      },
      "message": "[MFD] Add code UCB1200/UCB1300 assabet platform support\n\nAdd support for Intel assabet specific board support for\nUCB1200/UCB1300 devices.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "acb45439a89c6830349c02405f00a7208db0a66b",
      "tree": "4a1a1f2d5012029b70bdfeed46e6cb65c5d82867",
      "parents": [
        "05c45ca9aa4ec57e8e22341633c7a98cc879423d"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sun Sep 11 10:26:57 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sun Sep 11 10:26:57 2005 +0100"
      },
      "message": "[MFD] Add code UCB1200/UCB1300 touchscreen support\n\nAdd support for Philips UCB1200 and UCB1300 touchscreen\ninterfaces found on ARM devices.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "05c45ca9aa4ec57e8e22341633c7a98cc879423d",
      "tree": "d741028790d6f0b3ede6eb7e4e0632259d5aa4d3",
      "parents": [
        "2f79f458d2ab4a77f1b9df8d0041e51ce085d7c0"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sun Sep 11 10:26:31 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sun Sep 11 10:26:31 2005 +0100"
      },
      "message": "[MFD] Add code UCB1200/UCB1300 device support\n\nAdd the core device support code for the Philips UCB1200 and\nUCB1300 devices.  Also includes the following from Pavel:\n\nThis fixes u32 vs. pm_message_t confusion and uses cleaner\ntry_to_freeze() [fixing compilation as a side-effect on newer\nkernels.]\n\nSigned-off-by: Pavel Machek \u003cpavel@suse.cz\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "323cdfc191b7c1597dc748175062c368568d6af4",
      "tree": "7f4b242501db5498e889cc14054674ef4a7629b9",
      "parents": [
        "5e742ad66b4a8ba6f9d729660f822676d9e405d4"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Thu Aug 18 10:10:46 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Aug 18 10:10:46 2005 +0100"
      },
      "message": "[MFD] Add SA11x0 MCP platform device support\n\nAdd platform device data for the SA11x0 MCP device.  This allows\nplatforms to customise the configuration of the SA11x0 MCP device\naccording to their needs.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "5e742ad66b4a8ba6f9d729660f822676d9e405d4",
      "tree": "db0916606495e12463a6356e6375fb362dac1851",
      "parents": [
        "a4e137ab1447fc5009f21e257971aa60a9ec98fb"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Thu Aug 18 10:08:15 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Aug 18 10:08:15 2005 +0100"
      },
      "message": "[MFD] Add SA11x0 MCP support\n\nThis adds support for the MCP interface found on SA11x0 devices.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "a4e137ab1447fc5009f21e257971aa60a9ec98fb",
      "tree": "5ceb2e007a746fa84e45f08fefe6d37a3572fea1",
      "parents": [
        "099d44e869f1886b5eb02a5145ca97b5e4142e28"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Thu Aug 18 10:06:59 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Aug 18 10:06:59 2005 +0100"
      },
      "message": "[MFD] Add multimedia communication port core support\n\nAdd support for the core of the multimedia communication port\nframework.  This is a port used to communicate with devices\nwith two DMA paths and a control path.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    }
  ]
}
