)]}'
{
  "log": [
    {
      "commit": "082f2c1cc7aa7aabdbf5235b788ff42e10abb399",
      "tree": "6df24ee2dbfff72f29c5ddac02d7f68df241a7f7",
      "parents": [
        "892b62527fb3cd6753d6d2b79b5f21259f344cf5"
      ],
      "author": {
        "name": "Greg Ungerer",
        "email": "gerg@snapgear.com",
        "time": "Tue Jan 10 16:59:04 2006 +1000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 10 09:31:27 2006 -0800"
      },
      "message": "[PATCH] m68knommu: set irq priority/level different for each ColdFire serial port\n\nSet the hardware interrupt priority to a different value for each\nattached ColdFire serial port.  According to the CPU documentation you\nshould not use the same combination of level/priority on more than one\ndevice.  People have reported odd serial port behavior with them set the\nsame.\n\nSigned-off-by: Greg Ungerer \u003cgerg@uclinux.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "d936cfc72032fb4af03d1edd99596d18ea1f081c",
      "tree": "6d524c57fbff717ba82c6f4925659f6ec901d45d",
      "parents": [
        "4f47707b056bd2e3627ef390557ee93d312daba5",
        "adfc76419bff33542d4fd53dc7f24818f846f194"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 10 09:00:55 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 10 09:00:55 2006 -0800"
      },
      "message": "Merge branch \u0027upstream\u0027 of git://ftp.linux-mips.org/pub/scm/upstream-linus\n"
    },
    {
      "commit": "33f0f88f1c51ae5c2d593d26960c760ea154c2e2",
      "tree": "f53a38cf49406863f079d74d0e8f91b276f7c1a9",
      "parents": [
        "6ed80991a2dce4afc113be35089c564d62fa1f11"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 09 20:54:13 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 10 08:01:59 2006 -0800"
      },
      "message": "[PATCH] TTY layer buffering revamp\n\nThe API and code have been through various bits of initial review by\nserial driver people but they definitely need to live somewhere for a\nwhile so the unconverted drivers can get knocked into shape, existing\ndrivers that have been updated can be better tuned and bugs whacked out.\n\nThis replaces the tty flip buffers with kmalloc objects in rings. In the\nnormal situation for an IRQ driven serial port at typical speeds the\nbehaviour is pretty much the same, two buffers end up allocated and the\nkernel cycles between them as before.\n\nWhen there are delays or at high speed we now behave far better as the\nbuffer pool can grow a bit rather than lose characters. This also means\nthat we can operate at higher speeds reliably.\n\nFor drivers that receive characters in blocks (DMA based, USB and\nespecially virtualisation) the layer allows a lot of driver specific\ncode that works around the tty layer with private secondary queues to be\nremoved. The IBM folks need this sort of layer, the smart serial port\npeople do, the virtualisers do (because a virtualised tty typically\noperates at infinite speed rather than emulating 9600 baud).\n\nFinally many drivers had invalid and unsafe attempts to avoid buffer\noverflows by directly invoking tty methods extracted out of the innards\nof work queue structs. These are no longer needed and all go away. That\nfixes various random hangs with serial ports on overflow.\n\nThe other change in here is to optimise the receive_room path that is\nused by some callers. It turns out that only one ldisc uses receive room\nexcept asa constant and it updates it far far less than the value is\nread. We thus make it a variable not a function call.\n\nI expect the code to contain bugs due to the size alone but I\u0027ll be\nwatching and squashing them and feeding out new patches as it goes.\n\nBecause the buffers now dynamically expand you should only run out of\nbuffering when the kernel runs out of memory for real.  That means a lot of\nthe horrible hacks high performance drivers used to do just aren\u0027t needed any\nmore.\n\nDescription:\n\ntty_insert_flip_char is an old API and continues to work as before, as does\ntty_flip_buffer_push() [this is why many drivers dont need modification].  It\ndoes now also return the number of chars inserted\n\nThere are also\n\ntty_buffer_request_room(tty, len)\n\nwhich asks for a buffer block of the length requested and returns the space\nfound.  This improves efficiency with hardware that knows how much to\ntransfer.\n\nand tty_insert_flip_string_flags(tty, str, flags, len)\n\nto insert a string of characters and flags\n\nFor a smart interface the usual code is\n\n    len \u003d tty_request_buffer_room(tty, amount_hardware_says);\n    tty_insert_flip_string(tty, buffer_from_card, len);\n\nMore description!\n\nAt the moment tty buffers are attached directly to the tty.  This is causing a\nlot of the problems related to tty layer locking, also problems at high speed\nand also with bursty data (such as occurs in virtualised environments)\n\nI\u0027m working on ripping out the flip buffers and replacing them with a pool of\ndynamically allocated buffers.  This allows both for old style \"byte I/O\"\ndevices and also helps virtualisation and smart devices where large blocks of\ndata suddenely materialise and need storing.\n\nSo far so good.  Lots of drivers reference tty-\u003eflip.*.  Several of them also\ncall directly and unsafely into function pointers it provides.  This will all\nbreak.  Most drivers can use tty_insert_flip_char which can be kept as an API\nbut others need more.\n\nAt the moment I\u0027ve added the following interfaces, if people think more will\nbe needed now is a good time to say\n\n int tty_buffer_request_room(tty, size)\n\nTry and ensure at least size bytes are available, returns actual room (may be\nzero).  At the moment it just uses the flipbuf space but that will change.\nRepeated calls without characters being added are not cumulative.  (ie if you\ncall it with 1, 1, 1, and then 4 you\u0027ll have four characters of space.  The\nother functions will also try and grow buffers in future but this will be a\nmore efficient way when you know block sizes.\n\n int tty_insert_flip_char(tty, ch, flag)\n\nAs before insert a character if there is room.  Now returns 1 for success, 0\nfor failure.\n\n int tty_insert_flip_string(tty, str, len)\n\nInsert a block of non error characters.  Returns the number inserted.\n\n int tty_prepare_flip_string(tty, strptr, len)\n\nAdjust the buffer to allow len characters to be added.  Returns a buffer\npointer in strptr and the length available.  This allows for hardware that\nneeds to use functions like insl or mencpy_fromio.\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nCc: Paul Fulghum \u003cpaulkf@microgate.com\u003e\nSigned-off-by: Hirokazu Takata \u003ctakata@linux-m32r.org\u003e\nSigned-off-by: Serge Hallyn \u003cserue@us.ibm.com\u003e\nSigned-off-by: Jeff Dike \u003cjdike@addtoit.com\u003e\nSigned-off-by: John Hawkes \u003chawkes@sgi.com\u003e\nSigned-off-by: Martin Schwidefsky \u003cschwidefsky@de.ibm.com\u003e\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": "6ed80991a2dce4afc113be35089c564d62fa1f11",
      "tree": "6f32c700264e779683d0aee7b2e8b7ddc13210a1",
      "parents": [
        "7e91c55b32a469d9dda845a90038c015a70838e3"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Jan 09 20:54:09 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 10 08:01:57 2006 -0800"
      },
      "message": "[PATCH] tty-layer-buffering-revamp: jsm is broken\n\nLooks like JSM will be uncompilable after the TTY layer rework is merged into\nLinus\u0027s post-2.6.15 tree.\n\nIt was complex to fix - the maintainers were notified in September.\n\nCc: Wendy Xiong \u003cwendyx@us.ltcfwd.linux.ibm.com\u003e\nCc: Alan Cox \u003calan@lxorguk.ukuu.org.uk\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "29ce2c765ca9a41be6f31aa1770e8ee3ee48cd21",
      "tree": "4aacbb27a33dbac624f63cabc957d813b321ed3a",
      "parents": [
        "2065988e9fb1628de7958b0f7f709b93302f7b97"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Dec 12 20:11:50 2005 +0000"
      },
      "committer": {
        "name": "",
        "email": "ralf@denk.linux-mips.net",
        "time": "Tue Jan 10 13:39:07 2006 +0000"
      },
      "message": "Update Yoichi Yuasa\u0027s email address.\n    \nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\n"
    },
    {
      "commit": "977127174a7dff52d17faeeb4c4949a54221881f",
      "tree": "b05b9d18a1256d7ed97bdfb537213a8d70ccca57",
      "parents": [
        "80c0531514516e43ae118ddf38424e06e5c3cb3c",
        "93b47684f60cf25e8cefe19a21d94aa0257fdf36"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 09 18:41:42 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 09 18:41:42 2006 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/gregkh/pci-2.6\n"
    },
    {
      "commit": "3995f4c5327595b51482bdac8c189736262eb6e0",
      "tree": "ef768d0ecf243a2376bfc646b847964313146d3e",
      "parents": [
        "05814450070f13b671fc9dbf89477677aa0258cb",
        "fe38ea5623d262afc0b92ea47b8a7d8c988521d2"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 09 15:09:30 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 09 15:09:30 2006 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-arm\n"
    },
    {
      "commit": "05814450070f13b671fc9dbf89477677aa0258cb",
      "tree": "4c7f6e85c59a79d0e5835cbca69de5642071a833",
      "parents": [
        "8e9c238c3884c226f0cddc31cde87dd5df1a6500",
        "a61c2d78ce61e67baf27c43f6721db87a27ac762"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 09 15:09:03 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 09 15:09:03 2006 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-serial\n"
    },
    {
      "commit": "93b47684f60cf25e8cefe19a21d94aa0257fdf36",
      "tree": "f89ab5a9197cf9bb771a556f8b48989416848dce",
      "parents": [
        "46654728b55bf5d09dc91fa45f532131d8a609f2"
      ],
      "author": {
        "name": "Richard Knutsson",
        "email": "ricknu-0@student.ltu.se",
        "time": "Wed Nov 30 01:00:35 2005 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Mon Jan 09 12:13:23 2006 -0800"
      },
      "message": "[PATCH] drivers/*rest*: Replace pci_module_init() with pci_register_driver()\n\nReplace obsolete pci_module_init() with pci_register_driver().\n\nSigned-off-by: Richard Knutsson \u003cricknu-0@student.ltu.se\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "03929c76f3e5af919fb762e9882a9c286d361e7d",
      "tree": "947d9705b673c06872be6b9b02f9ff8f51c5bab7",
      "parents": [
        "022930ebea0df878d449b7c74309c1d612441ac5"
      ],
      "author": {
        "name": "Aristeu Sergio Rozanski Filho",
        "email": "aris@cathedrallabs.org",
        "time": "Thu Dec 29 19:18:49 2005 -0200"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Jan 09 15:44:26 2006 +1100"
      },
      "message": "[PATCH] ppc32: cpm_uart: fix xchar sending\n\nwhile using SCC as uart and as serial console at same time I got this:\n\n[  138.214258] Oops: kernel access of bad area, sig: 11 [#1]\n[  138.218832] PREEMPT\n[  138.221021] NIP: C0105C48 LR: C0105E60 SP: C03D5D10 REGS: c03d5c60 TRAP: 0300    Not tainted\n[  138.229280] MSR: 00009032 EE: 1 PR: 0 FP: 0 ME: 1 IR/DR: 11\n[  138.234713] DAR: 00000000, DSISR: C0000000\n[  138.238745] TASK \u003d c0349420[693] \u0027sh\u0027 THREAD: c03d4000\n[  138.243754] Last syscall: 6\n[  138.246402] GPR00: FEFFFFFF C03D5D10 C0349420 C01FB094 00000011 00000000 C1ECFBBC C01F24B0\n[  138.254602] GPR08: FF002820 00000000 FF0028C0 00000000 19133615 A0CBCD5E 02000300 00000000\n[  138.262804] GPR16: 00000000 01FF9E4C 00000000 7FA9A770 00000000 00000000 1003E2A8 00000000\n[  138.271003] GPR24: 100562F4 7F9B6EF4 C0210000 C02A5338 C01FB094 00000000 C01FB094 C1F14574\n[  138.279376] NIP [c0105c48] cpm_uart_tx_pump+0x4c/0x22c\n[  138.284419] LR [c0105e60] cpm_uart_start_tx+0x38/0xb0\n[  138.289361] Call trace:\n[  138.291762]  [c0105e60] cpm_uart_start_tx+0x38/0xb0\n[  138.296547]  [c010277c] uart_send_xchar+0x88/0x118\n[  138.301244]  [c01029a0] uart_unthrottle+0x6c/0x138\n[  138.305942]  [c00ece10] check_unthrottle+0x60/0x64\n[  138.310641]  [c00ecec4] reset_buffer_flags+0xb0/0x138\n[  138.315595]  [c00ecf64] n_tty_flush_buffer+0x18/0x78\n[  138.320465]  [c00e81b0] tty_ldisc_flush+0x64/0x7c\n[  138.325078]  [c010410c] uart_close+0xf0/0x2c8\n[  138.329348]  [c00e9c48] release_dev+0x724/0x8d4\n[  138.333790]  [c00e9e18] tty_release+0x20/0x3c\n[  138.338061]  [c006e544] __fput+0x178/0x1e0\n[  138.342076]  [c006c43c] filp_close+0x54/0xac\n[  138.346261]  [c0002d90] ret_from_syscall+0x0/0x44\n[  138.352386] note: sh[693] exited with preempt_count 2\n\na easy way to reproduce it is log into the system using ssh and do:\n\tcat \u003e/dev/ttyCPM0\nthen, switch to minicom and write some stuff on it back to ssh, a control C\nproduce the oops\n\nthis happens because uart_close calls uart_shutdown which frees xmit.buf,\ncurrently used by xchar sending in cpm_uart_tx_pump(), which seems wrong.\n\nthe attached patch fixes the oops and also fixes xchar sending.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "cc5d0189b9ba95260857a5018a1c2fef90008507",
      "tree": "1202c94b6b3cb81a96d0a0e54424cad10eef68bb",
      "parents": [
        "9cf84d7c97992dbe5360b241327341c07ce30fc9"
      ],
      "author": {
        "name": "Benjamin Herrenschmidt",
        "email": "benh@kernel.crashing.org",
        "time": "Tue Dec 13 18:01:21 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Jan 09 14:53:55 2006 +1100"
      },
      "message": "[PATCH] powerpc: Remove device_node addrs/n_addr\n\nThe pre-parsed addrs/n_addrs fields in struct device_node are finally\ngone. Remove the dodgy heuristics that did that parsing at boot and\nremove the fields themselves since we now have a good replacement with\nthe new OF parsing code. This patch also fixes a bunch of drivers to use\nthe new code instead, so that at least pmac32, pseries, iseries and g5\ndefconfigs build.\n\nSigned-off-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "0fec53a24a5e5f7ba68d891b68f568b6aeafaca6",
      "tree": "c16976218b4f9bd1632ffea9619d209392c1a213",
      "parents": [
        "b9abaa3fb7328851bdeaad19e694048f0ff71d9a"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sun Jan 08 22:37:46 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sun Jan 08 22:37:46 2006 +0000"
      },
      "message": "[ARM] Remove EPXA10DB machine support\n\nEPXA10DB seems to be uncared for:\n- the \"PLD\" code has never been merged\n- no one has reported that this platform has been broken since\n  at least 2.6.10\n- interest seems to have dried up around March 2003.\n\nTherefore, remove EPXA10DB support.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "a61c2d78ce61e67baf27c43f6721db87a27ac762",
      "tree": "c27d0df1c743cff54f15f7476c86ced8917047e5",
      "parents": [
        "f61051cd2fc58546f28c226933942d4360810ffb"
      ],
      "author": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Sat Jan 07 23:18:19 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Jan 07 23:18:19 2006 +0000"
      },
      "message": "[SERIAL] Make the number of UARTs registered configurable.\n\nAlso add a nr_uarts module option to the 8250 code to override\nthis, up to a maximum of CONFIG_SERIAL_8250_NR_UARTS\n\nThis should appease people who complain about a proliferation\nof /dev/ttyS \u0026 /sysfs nodes whilst at the same time allowing\na single kernel image to support the rarer occasions of\nlots of devices.\n\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "f61051cd2fc58546f28c226933942d4360810ffb",
      "tree": "bac31cc9c3c857d21b1b084260f443ebc8d25e6c",
      "parents": [
        "b9abaa3fb7328851bdeaad19e694048f0ff71d9a"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Jan 07 23:11:23 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Jan 07 23:11:23 2006 +0000"
      },
      "message": "[SERIAL] Fix clocal wakeup problem\n\nJim Alexander reported a problem where \"if one calls open() in\nblocking mode with CLOCAL off, the 8250.c driver under the 2.6\nkernel (or at least 2.6.8 and 2.6.10) does not wake up the\nblocked process when DCD is asserted.\"\n\nFix this by enabling modem status interrupts immediately before\nwe read the carrier detect status.\n\nThanks to Jim for reporting the problem and testing the fix.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "8995b161eb142b843094dd614b80e4cce1d66352",
      "tree": "ffd9988879441d5ec45ab96b2e06f4fcb1210158",
      "parents": [
        "cc918c7ab7da017bfaf9661420bb5c462e057cfb",
        "fe5dd7c73d328b255286b6b65ca19dd34447f709"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Jan 07 10:45:22 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Jan 07 10:45:22 2006 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-arm\n"
    },
    {
      "commit": "cc918c7ab7da017bfaf9661420bb5c462e057cfb",
      "tree": "36198fe17267200131ec6c3df7c046a857f76b8d",
      "parents": [
        "f9c5d0451b406a6bd0d0bf1fdd63c7777af6ebc6",
        "dd68e88c72ac9ad25052065c4a443326eda6a052"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Jan 07 10:44:22 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Jan 07 10:44:22 2006 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-serial\n"
    },
    {
      "commit": "f8ce25476d5f12ffa29b885e49c38cd95053437e",
      "tree": "640fbdaacbf375f13feaf0eee49306d90b778b8a",
      "parents": [
        "de1d815fccee1f4766a7e56054ab0ec3f6f3a7db"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Jan 07 16:15:52 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Jan 07 16:15:52 2006 +0000"
      },
      "message": "[ARM] Move asm/hardware/clock.h to linux/clk.h\n\nThis is needs to be visible to other architectures using the AMBA\nbus and peripherals.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "123656d4cc8c946f578ebd18c2050f5251720428",
      "tree": "3d5432eff034a3b9cfdc98b37e245abe5695342d",
      "parents": [
        "a62c80e559809e6c7851ec04d30575e85ad6f6ed",
        "0aec63e67c69545ca757a73a66f5dcf05fa484bf"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Jan 07 14:40:05 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Jan 07 14:40:05 2006 +0000"
      },
      "message": "Merge with Linus\u0027 kernel.\n"
    },
    {
      "commit": "a62c80e559809e6c7851ec04d30575e85ad6f6ed",
      "tree": "7d91fd1f5186ad0d95498f65acfa5a10942133d6",
      "parents": [
        "6351610d6906aacbf9176cbdd045dd3876eec4c0"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Jan 07 13:52:45 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Jan 07 13:52:45 2006 +0000"
      },
      "message": "[ARM] Move AMBA include files to include/linux/amba/\n\nSince the ARM AMBA bus is used on MIPS as well as ARM, we need\nto make the bus available for other architectures to use.  Move\nthe AMBA include files from include/asm-arm/hardware/ to\ninclude/linux/amba/\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "d62de3aa8ac762c09845aa38634a845da55f31dc",
      "tree": "22cb364644ecdacb2fe678b93ae0f446932cc971",
      "parents": [
        "2d8179c0b77b54e27321944e16f65defeda81e27"
      ],
      "author": {
        "name": "Sylvain Munaut",
        "email": "tnt@246tNt.com",
        "time": "Fri Jan 06 00:11:32 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:30 2006 -0800"
      },
      "message": "[PATCH] ppc32/serial: Change mpc52xx_uart.c to use the Low Density Serial port major\n\nBefore this patch we were just using the \"classic\" /dev/ttySx devices.\nHowever when another on the system is loaded that uses those (like drivers for\nserial PCMCIA), that creates a conflict for the minors.  Therefore, we now use\n/dev/ttyPSC[0:5] (note the 0-based numbering !) with some minors we\u0027ve been\nassigned in the \"Low Density Serial port major\"\n\nSigned-off-by: Sylvain Munaut \u003ctnt@246tNt.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "2d8179c0b77b54e27321944e16f65defeda81e27",
      "tree": "6edb5004ae7299cc436d888fbc2b36fb5093c6b5",
      "parents": [
        "7558824a8d16e244072bfebc9e5e3e3b1b9af261"
      ],
      "author": {
        "name": "Sylvain Munaut",
        "email": "tnt@246tNt.com",
        "time": "Fri Jan 06 00:11:31 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Jan 06 08:33:30 2006 -0800"
      },
      "message": "[PATCH] ppc32/serial: Fix compiler errors with GCC 4.x in mpc52xx_uart.c\n\nSigned-off-by: Wolfgang Denk \u003cwd@denx.de\u003e\nSigned-off-by: Sylvain Munaut \u003ctnt@246tNt.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f8cfa618dccbdc6dab5297f75779566a388a98fd",
      "tree": "b91e0952038dafc6e03bf8b1d8948b1fdefec031",
      "parents": [
        "b463581154f3f3eecda27cae60df813fefcd84d3"
      ],
      "author": {
        "name": "Dominik Brodowski",
        "email": "linux@dominikbrodowski.net",
        "time": "Mon Nov 14 21:25:51 2005 +0100"
      },
      "committer": {
        "name": "Dominik Brodowski",
        "email": "linux@dominikbrodowski.net",
        "time": "Fri Jan 06 00:03:24 2006 +0100"
      },
      "message": "[PATCH] pcmcia: unify attach, EVENT_CARD_INSERTION handlers into one probe callback\n\nUnify the EVENT_CARD_INSERTION and \"attach\" callbacks to one unified\nprobe() callback. As all in-kernel drivers are changed to this new\ncallback, there will be no temporary backwards-compatibility. Inside a\nprobe() function, each driver _must_ set struct pcmcia_device\n*p_dev-\u003einstance and instance-\u003ehandle correctly.\n\nWith these patches, the basic driver interface for 16-bit PCMCIA drivers\nnow has the classic four callbacks known also from other buses:\n\n        int (*probe)            (struct pcmcia_device *dev);\n        void (*remove)          (struct pcmcia_device *dev);\n\n        int (*suspend)          (struct pcmcia_device *dev);\n        int (*resume)           (struct pcmcia_device *dev);\n\nSigned-off-by: Dominik Brodowski \u003clinux@dominikbrodowski.net\u003e\n\n"
    },
    {
      "commit": "b463581154f3f3eecda27cae60df813fefcd84d3",
      "tree": "5e5b0f7a32b0727b64e52b9b2649897e6c841074",
      "parents": [
        "f3990715589d378a2d3aa9b8accd78bb4a2378b7"
      ],
      "author": {
        "name": "Dominik Brodowski",
        "email": "linux@dominikbrodowski.net",
        "time": "Mon Nov 14 21:25:35 2005 +0100"
      },
      "committer": {
        "name": "Dominik Brodowski",
        "email": "linux@dominikbrodowski.net",
        "time": "Fri Jan 06 00:03:20 2006 +0100"
      },
      "message": "[PATCH] pcmcia: remove dev_list from drivers\n\nThe linked list of devices managed by each PCMCIA driver is, in very most\ncases, unused. Therefore, remove it from many drivers.\n\nSigned-off-by: Dominik Brodowski \u003clinux@dominikbrodowski.net\u003e\n\n"
    },
    {
      "commit": "cc3b4866bee996c922e875b8c8efe9f0d8803aae",
      "tree": "6632837b6986f33566f75ed971cecbdc210e3201",
      "parents": [
        "8e9e793d68fcda6cc84c18cedf85ca0f91d801a8"
      ],
      "author": {
        "name": "Dominik Brodowski",
        "email": "linux@dominikbrodowski.net",
        "time": "Mon Nov 14 21:23:14 2005 +0100"
      },
      "committer": {
        "name": "Dominik Brodowski",
        "email": "linux@dominikbrodowski.net",
        "time": "Fri Jan 06 00:03:10 2006 +0100"
      },
      "message": "[PATCH] pcmcia: unify detach, REMOVAL_EVENT handlers into one remove callback\n\nUnify the \"detach\" and REMOVAL_EVENT handlers to one \"remove\" function.\nOld functionality is preserved, for the moment.\n\nSigned-off-by: Dominik Brodowski \u003clinux@dominikbrodowski.net\u003e\n\n"
    },
    {
      "commit": "98e4c28b7ec390c2dad6a4c69d69629c0f7e8b10",
      "tree": "b3d46f0643352e541d6a39e6da09059687cf713d",
      "parents": [
        "63e7ebd06402951bc8863ba5b7bc9b9f42044849"
      ],
      "author": {
        "name": "Dominik Brodowski",
        "email": "linux@dominikbrodowski.net",
        "time": "Mon Nov 14 21:21:18 2005 +0100"
      },
      "committer": {
        "name": "Dominik Brodowski",
        "email": "linux@dominikbrodowski.net",
        "time": "Thu Jan 05 23:59:02 2006 +0100"
      },
      "message": "[PATCH] pcmcia: new suspend core\n\nMove the suspend and resume methods out of the event handler, and into\nspecial functions. Also use these functions for pre- and post-reset, as\nalmost all drivers already do, and the remaining ones can easily be\nconverted.\n\nBugfix to include/pcmcia/ds.c\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\n\nSigned-off-by: Dominik Brodowski \u003clinux@dominikbrodowski.net\u003e\n\n"
    },
    {
      "commit": "dd68e88c72ac9ad25052065c4a443326eda6a052",
      "tree": "0119b11909b08a5327f7a70130a1e596a0b274dc",
      "parents": [
        "ea8874dc3881c2a496a4bd6bc981f707cc6a0db1"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Thu Jan 05 10:55:26 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Jan 05 10:55:26 2006 +0000"
      },
      "message": "[SERIAL] 8520_pci: build fix\n\n_INLINE_ went away.\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "ea8874dc3881c2a496a4bd6bc981f707cc6a0db1",
      "tree": "c7cef73da86e9ce36a7a8358fbf20b34db2f6d07",
      "parents": [
        "45e24601921fc1c4ca7932f7f7a475d3ad64ecad"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Jan 04 19:43:24 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Jan 04 19:43:24 2006 +0000"
      },
      "message": "[SERIAL] Remove _INLINE_\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "45e24601921fc1c4ca7932f7f7a475d3ad64ecad",
      "tree": "21b64ad15abe3b051a0462096ee2474212274e20",
      "parents": [
        "50aec3b561de4e435204ad315e5c5ab58ef9feda"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Jan 04 19:19:06 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Jan 04 19:19:06 2006 +0000"
      },
      "message": "[SERIAL] Move interrupt-time spinlocking inside serial8250_handle_port()\n\nAll call sites for serial8250_handle_port() acquired the port spinlock\nand released it afterwards.  This is a needless duplication of code.\nMove the spinlocking inside serial8250_handle_port().\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "50aec3b561de4e435204ad315e5c5ab58ef9feda",
      "tree": "dfbd24000670a78ebee7d96d8eab510f2fcd1f9e",
      "parents": [
        "1624f003349b49050f42c7d9f5407dfc05efb912"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Jan 04 18:13:03 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Jan 04 18:13:03 2006 +0000"
      },
      "message": "[SERIAL] Use uart_match_port() to find a matching port in find_port()\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "1624f003349b49050f42c7d9f5407dfc05efb912",
      "tree": "43fef7650e2bb7832222956b0dc46e6b48e74b8c",
      "parents": [
        "26e92861be9c0da3be30718de693976b3f6a8026"
      ],
      "author": {
        "name": "Benjamin Herrenschmidt",
        "email": "benh@kernel.crashing.org",
        "time": "Wed Jan 04 18:09:44 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Jan 04 18:09:44 2006 +0000"
      },
      "message": "[SERIAL] Fix matching of MMIO ports\n\nThe function uart_match_port() incorrectly compares the ioremap\u0027d\nvirtual addresses of ports instead of the physical address to find\nduplicate ports for MMIO based UARTs. This fixes it.\n\nSigned-off-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "26e92861be9c0da3be30718de693976b3f6a8026",
      "tree": "22c1e9b40ada381b63d480b2cd7cf71e032dd747",
      "parents": [
        "2af7cd68f1ed20e2e72c91988c3d4f457fa29ebc"
      ],
      "author": {
        "name": "Gareth Howlett",
        "email": "ghowlett@connecttech.com",
        "time": "Wed Jan 04 17:00:42 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Jan 04 17:00:42 2006 +0000"
      },
      "message": "[SERIAL] Add support for more Connect Tech PCI serial boards\n\nI\u0027ve also fixed the sort-ordering comments on this naming convention.\n\nSigned-off-by: Stuart MacDonald \u003cstuartm@connecttech.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "2af7cd68f1ed20e2e72c91988c3d4f457fa29ebc",
      "tree": "a242ce0d1ecd154ef6bfa7aaf910a003bed3abdd",
      "parents": [
        "88026842b0a760145aa71d69e74fbc9ec118ca44"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Wed Jan 04 16:55:09 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Jan 04 16:55:09 2006 +0000"
      },
      "message": "[Serial] Don\u0027t miss modem status changes\n\nReading the MSR register on 8250-compatible UARTs results in any\nmodem status interrupts being cleared.  To avoid missing any\nstatus changes, arrange for get_mctrl() to read the current\nstatus via check_modem_status(), which will process any pending\nstate changes for us.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "a8d3584a2df28827094f6338cde1303c467bc1f0",
      "tree": "d2cdb824f4b2f109ad6a74285455b56e5a2dd118",
      "parents": [
        "f47fc0ac7ead5ed91a11fcabfad6ee44c17ee934"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Tue Jan 03 18:41:37 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Jan 03 18:41:37 2006 +0000"
      },
      "message": "[ARM] Remove clk_use()/clk_unuse()\n\nIt seems that clk_use() and clk_unuse() are additional complexity\nwhich isn\u0027t required anymore.  Remove them from the clock framework\nto avoid the additional confusion which they cause, and update all\nARM machine types except for OMAP.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "f02aa3f9a3dea4375759ae1d87bebf2467719b72",
      "tree": "8300a735ff96bc107e05df334a8fd05a951c94fe",
      "parents": [
        "9e625ff8a37aefcc177b19614ffcffb5bc6eeea1"
      ],
      "author": {
        "name": "Erik Hovland",
        "email": "erik@hovland.org",
        "time": "Fri Dec 30 15:57:35 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Fri Dec 30 15:57:35 2005 +0000"
      },
      "message": "[ARM] 3216/1: indent and typo in drivers/serial/pxa.c\n\nPatch from Erik Hovland\n\nThis patch provides two changes. An indent is supplied for an if/else clause so that it is more readable. An acronym is incorrectly typed as UER when it should be IER.\n\nSigned-off-by: Erik Hovland \u003cerik@hovland.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "a710ce08585e920740ffc84c7f3c82f4081169cf",
      "tree": "28032138cf7bd4cc903ce51083800df6a46e5dc8",
      "parents": [
        "04333393b930370db0cc29fdf0dbbd08ecd43337"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Tue Dec 27 11:10:34 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Dec 27 11:10:34 2005 +0000"
      },
      "message": "[SERIAL] Fix AMBA PL011 sysrq character handling\n\nWe only want the received character without the status bits for\nsysrq handling.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "0b57ee9e55373a27e45549e82b0c43621480a71b",
      "tree": "03c584b93e9323d5057fdd482c6cb5c9a3e1d651",
      "parents": [
        "14904398e5b573d13f8c8dbd43a452ff34c0efc2"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Thu Dec 22 21:03:47 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Thu Dec 22 23:09:54 2005 -0800"
      },
      "message": "[SPARC]: introduce a SPARC Kconfig symbol\n\nIntroduce a Kconfig symbol SPARC that is defined on both the sparc and\nsparc64 architectures.\n\nThis symbol makes some dependencies more readable.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "c2cd6d3c122798c39f63e21e4dd04ee5790010b6",
      "tree": "3fe06528fa7108dbcc6424689b4edc2dbbf47e7a",
      "parents": [
        "e4f5c82a92c2a546a16af1614114eec19120e40a"
      ],
      "author": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Wed Dec 07 18:11:26 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Dec 07 18:11:26 2005 +0000"
      },
      "message": "[SERIAL] 8250_pci: Remove redundant assignment, and mark fallthrough.\n\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "cb3592be272d83011051dc49f4326355c01f1e1f",
      "tree": "4eb094ef4e2a2b2f5c18f5ca2c2efe06a81974a0",
      "parents": [
        "f5417612d787e6b619fd69616bbf95f1b895e900"
      ],
      "author": {
        "name": "Arjan van de Ven",
        "email": "arjan@infradead.org",
        "time": "Mon Nov 28 21:04:11 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Mon Nov 28 21:04:11 2005 +0000"
      },
      "message": "[SERIAL] mark several serial tables const\n\nThis patch marks a few serial data structures const, moving them to\n.rodata where they won\u0027t false-share cachelines with things that get\nwritten to.\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": "c889b89619339636240227abb9ee5c9ec1167a1a",
      "tree": "b5c9dcda9140bdd2f67e233abd5174c5289b9dab",
      "parents": [
        "db93a82fa9d8b4d6e31c227922eaae829253bb88"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Mon Nov 21 17:05:21 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Mon Nov 21 17:05:21 2005 +0000"
      },
      "message": "[SERIAL] imx: Fix missed platform_driver_unregister\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "8ee3f402676bf59caa454b7171ae09c8ac136627",
      "tree": "268723b53609e44e9e508546f60aa137ef956b8b",
      "parents": [
        "3b762d321a5e73d3a892a13f0c84dc1d3d50e928",
        "832f4ede791ae0a96dcbb231ccb181ad7a54bfc2"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Nov 19 15:25:23 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Nov 19 15:25:23 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-serial\n"
    },
    {
      "commit": "832f4ede791ae0a96dcbb231ccb181ad7a54bfc2",
      "tree": "fcf5ab73b08104138528409b5c7c8f9cb305bd36",
      "parents": [
        "b63d4f0fb80918ab37b6c0ee1adcd49e05c9994c"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Nov 19 11:26:17 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Nov 19 11:26:17 2005 +0000"
      },
      "message": "[SERIAL] Remove unused variable in sa1100.c\n\nSince the spinlock was removed from sa1100_start_tx(), the \"flags\"\nvariable becomes redundant.  Remove it.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "b63d4f0fb80918ab37b6c0ee1adcd49e05c9994c",
      "tree": "33af84cc60a0ad29c01632f24cba42eeb498be1a",
      "parents": [
        "811803c5572b296e0031e0099203de90d77c7bcf"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sat Nov 19 11:10:35 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Nov 19 11:10:35 2005 +0000"
      },
      "message": "[SERIAL] Fix status reporting with PL011 serial driver\n\nThe receiver status register reports latched error conditions, which\nmust be cleared by writing to it.  However, the data register reports\nunlatched conditions which are associated with the current character.\nUse the data register to interpret error status rather than the RSR.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "305f5167f1e9d832b332933979b6b5e3cc68ce73",
      "tree": "f6b0bc3a994f40efa1ec40acab8e3cd487239263",
      "parents": [
        "9ab8851549fb9ed570013c33e0786a3fd084be41"
      ],
      "author": {
        "name": "Matthew Wilcox",
        "email": "willy@parisc-linux.org",
        "time": "Fri Nov 18 16:17:50 2005 -0500"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Fri Nov 18 16:17:50 2005 -0500"
      },
      "message": "[PARISC] Make Serial MUX depend on a specific bus type.\n\nDepend on GSC, not PARISC.  Machines without GSC don\u0027t have a MUX.\n\nSigned-off-by: Matthew Wilcox \u003cwilly@parisc-linux.org\u003e\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "a137ce8536f6124c42ac300be01b9b611c7db5a1",
      "tree": "5aedf1c236c7ed0a8dc5ed51e584b03d02d200fd",
      "parents": [
        "83aceb5b6a561c7fd7cc2d481fb55a0a2ae37c12"
      ],
      "author": {
        "name": "Ryan Bradetich",
        "email": "rbrad@parisc-linux.org",
        "time": "Thu Nov 17 16:38:28 2005 -0500"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Thu Nov 17 16:38:28 2005 -0500"
      },
      "message": "[PARISC] Define port-\u003etimeout to fix a long msleep in mux.c\n\nThis commit is in response to a bug reported by Vesa on the irc channel\na couple of weeks ago.\n\nThe bug was that the console would apparently hang (not return) while\nusing the mux console.\n\nThe root cause of this bug is that bash (with readline support) makes a\ncall to the tcsetattr() glibc function with the argument TCSADRAIN.  This\ncauses the serial core in the kernel use the uart_wait_until_sent() to be\ncalled. This function verifies the mux transmit queue is empty or calls the\nmsleep_interruptable() with a calculated timeout value that is dependant\nupon the port-\u003etimeout variable.\n\nThe real problem here is that the port-\u003etimeout was not defined so it\nwas defaulted to 0 and the timeout calculation performs the following\ncalculation:\n\nchar_time \u003d (port-\u003etimeout - HZ/50) / port-\u003efifosize;\n\nwhere char_time is an unsigned long. Since the serial Mux does not use\ninterrupts, the msleep_interruptable() function waits until the timeout\nhas been reached ... and when the port-\u003etimeout \u003c HZ/50 this timeout will\nbe a long time. (I have validated that the console will eventually\nreturn ... but it takes quite a while for this to happen).\n\nThis patch simply sets the port-\u003etimeout on the Mux to HZ/50 to avoid\nthis long timeout period.\n\nSigned-off-by: Ryan Bradetich \u003crbrad@parisc-linux.org\u003e\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "92495c0ebc99ee00651571cba6939783234f7696",
      "tree": "db6ddc761e9481f1141bbac73e63c6b5f7c67560",
      "parents": [
        "08dc2ca61e683e9119ff534dfcd0fd555401fcf7"
      ],
      "author": {
        "name": "Ryan Bradetich",
        "email": "rbrad@parisc-linux.org",
        "time": "Thu Nov 17 16:36:52 2005 -0500"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Thu Nov 17 16:36:52 2005 -0500"
      },
      "message": "[PARISC] Compile fixups for serial/mux.c\n\nThis patch does the following:\n* Fixes compiler warnings.\n* Replaces a __raw_readl call with the existing macro.\n\nSigned-off-by: Ryan Bradetich \u003crbrad@parisc-linux.org\u003e\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "7f729ccff35befa08a836ab33a4372c7f6735645",
      "tree": "0719139e279c8054d734df5be78154f3b536f22f",
      "parents": [
        "cbc749518235b0f1dacb867c8c25059a1b876276",
        "ee31b337852ca8a65840702544ff5c64d37740f5"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:17:21 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:17:21 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-serial\n"
    },
    {
      "commit": "4c8d3d997ef3c0594350fba716529905b314287e",
      "tree": "8439efcf2aa645a0e9bebd9e40d138c95d279671",
      "parents": [
        "c1986ee9bea3d880bcf0d3f1a31e055778f306c7"
      ],
      "author": {
        "name": "Kumar Gala",
        "email": "galak@gate.crashing.org",
        "time": "Sun Nov 13 16:06:30 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:10 2005 -0800"
      },
      "message": "[PATCH] Update email address for Kumar\n\nChanged jobs and the Freescale address is no longer valid.\n\nSigned-off-by: Kumar Gala \u003cgalak@kernel.crashing.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "bca73e4bf8563d83f7856164caa44d5f42e44cca",
      "tree": "ea8c50adca509c8012aed715d578b6c927f9e284",
      "parents": [
        "95e861db3eaba7bc99f8605db70103ec3d078203"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sun Nov 13 16:06:25 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 13 18:14:10 2005 -0800"
      },
      "message": "[PATCH] move pm_register/etc. to CONFIG_PM_LEGACY, pm_legacy.h\n\nSince few people need the support anymore, this moves the legacy\npm_xxx functions to CONFIG_PM_LEGACY, and include/linux/pm_legacy.h.\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ee31b337852ca8a65840702544ff5c64d37740f5",
      "tree": "c3da8df25c4084c321e6a96888f7179272a78eaa",
      "parents": [
        "270c7a721548d116d9e054f48469e75cb0f35288"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sun Nov 13 15:28:51 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sun Nov 13 15:28:51 2005 +0000"
      },
      "message": "[SERIAL] Fix Bug 4900: S3 resume oops with irattach - Thinkpad A21m\n\nIf we fail to re-startup a serial port on resume, shut it down\nimmediately and mark it as an error condition.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "270c7a721548d116d9e054f48469e75cb0f35288",
      "tree": "48bbdab0e66424b8faa1ad95190e2315261e936a",
      "parents": [
        "fa609435a6edaaca14a646d470d7e10abebc8604"
      ],
      "author": {
        "name": "Florin Malita",
        "email": "fmalita@gmail.com",
        "time": "Sat Nov 12 22:09:22 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Nov 12 22:09:22 2005 +0000"
      },
      "message": "[SERIAL] sa1100_start_tx spinlock recursion\n\nThe serial core aquires the port spinlock before calling\nport-\u003eops-\u003estart_tx(), so sa1100_start_tx() shouldn\u0027t try to lock it\nagain.\n\nBUG: spinlock recursion on CPU#0, init/1\n lock: c0205f20, .magic: dead4ead, .owner: init/1, .owner_cpu: 0\n[\u003cc0022cdc\u003e] (dump_stack+0x0/0x14) [\u003cc00dc338\u003e] (spin_bug+0x0/0xbc)\n[\u003cc00dc6b0\u003e] (_raw_spin_lock+0x0/0x170)  r8 \u003d 00000007  r7 \u003d C02FE0070\n[\u003cc018a2a8\u003e] (_spin_lock_irqsave+0x0/0x24)  r4 \u003d C0205F20\n[\u003cc0112110\u003e] (sa1100_start_tx+0x0/0x40)  r4 \u003d C038C000\n[\u003cc010ee38\u003e] (__uart_start+0x0/0x5c) [\u003cc010ee94\u003e] (uart_start+0x0/0x3\n[\u003cc010f1d0\u003e] (uart_write+0x0/0xdc) [\u003cc00fee34\u003e] (write_chan+0x0/0x370\n\nSigned-off-by: Florin Malita \u003cfmalita@gmail.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "fa609435a6edaaca14a646d470d7e10abebc8604",
      "tree": "b7cb3600fc4f55f94bb87109974482c867d1ee9c",
      "parents": [
        "38801e2e54308ec52fc580c0fcdee98fe8696195"
      ],
      "author": {
        "name": "Bjorn Helgaas",
        "email": "bjorn.helgaas@hp.com",
        "time": "Sat Nov 12 22:06:31 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Nov 12 22:06:31 2005 +0000"
      },
      "message": "[SERIAL] Claim Wacom tablet device on HP tc1100 tablet\n\nClaim the WACF005 device.  This is the pen display pointing device on\nthe HP Compaq tc1100 Tablet PC.  More information about using this\ndevice, including using it as an X pointer device:\n\n    http://www.theory.bham.ac.uk/staff/schofield/linux/tc1100/\n\nChristopher Kemp \u003cck231@cam.ac.uk\u003e did the legwork of determining that\nthe WACF005 is really just a plain old UART and doing an initial ACPI\ndriver (before we had PNPACPI), and David Ludlow \u003cdave@adsllc.com\u003e\nconfirmed that PNPACPI + the attached patch is now sufficient:\n\n    pnp: Device 00:05 activated.\n    ttyS4 at I/O 0x300 (irq \u003d 4) is a 16550A\n\nSigned-off-by: Bjorn Helgaas \u003cbjorn.helgaas@hp.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "38801e2e54308ec52fc580c0fcdee98fe8696195",
      "tree": "8a9380d9aa5e5e5c824b1efc263773f6b70a42da",
      "parents": [
        "46677736bec5c44601987e8780e55bc242e0aa46"
      ],
      "author": {
        "name": "Andrey Volkov",
        "email": "avolkov@varma-el.com",
        "time": "Sat Nov 12 22:04:06 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Nov 12 22:04:06 2005 +0000"
      },
      "message": "[SERIAL] Fix mpc52xx_uart.c\n\nFix copy-paste bug in mpc52xx_uart.c (pdev\u003c-\u003edev)\n\nSigned-off-by: Andrey Volkov \u003cavolkov@varma-el.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "46677736bec5c44601987e8780e55bc242e0aa46",
      "tree": "09fe8cbf09d9aa6411177c9007ce2f7c2e6da920",
      "parents": [
        "fd8c597214f868df7c0055c54e27baaae8df9e70"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Nov 12 22:00:27 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Nov 12 22:00:27 2005 +0000"
      },
      "message": "[SERIAL] dz: Use CKSEG1ADDR to setup mappings.\n\nUse physical addresses at the interface level, letting drivers remap\nthem as appropriate.\n\nSigned-off-by: Maciej W. Rozycki \u003cmacro@linux-mips.org\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "fd8c597214f868df7c0055c54e27baaae8df9e70",
      "tree": "8acdd232c7b5663768a8a1724caf9050fb37e1db",
      "parents": [
        "5c8c755ce508a9d41d8a8d80fff387cb4e2929fc"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Sat Nov 12 21:59:59 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Nov 12 21:59:59 2005 +0000"
      },
      "message": "[SERIAL] dz: Nuke trailing whitespace\n\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "5c8c755ce508a9d41d8a8d80fff387cb4e2929fc",
      "tree": "6db5a7e195068fc4ca20651a23f20a2b0350295e",
      "parents": [
        "cd52d1ee9a92587b242d946a2300a3245d3b885a"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Sat Nov 12 21:58:05 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Nov 12 21:58:05 2005 +0000"
      },
      "message": "[SERIAL] don\u0027t disable xscale serial ports after autoconfig\n\nxscale-type UARTs have an extra bit (UUE) in the IER register that has\nto be written as 1 to enable the UART.  At the end of autoconfig() in\ndrivers/serial/8250.c, the IER register is unconditionally written as\nzero, which turns off the UART, and makes any subsequent printch() hang\nthe box.\n\nSince other 8250-type UARTs don\u0027t have this enable bit and are thus\nalways \u0027enabled\u0027 in this sense, it can\u0027t hurt to enable xscale-type\nserial ports all the time as well.  The attached patch changes the\nautoconfig() exit path to see if the port has an UUE enable bit, and if\nyes, to write UUE\u003d1 instead of just putting a zero into IER, using the\nsame test as is used at the beginning of serial8250_console_write().\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@wantstofly.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\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": "483772469d4a15d77402c2ac819c80dff9be8421",
      "tree": "3eb06f6a5d52da2b5e9ff5b17cdc669cab55fd0f",
      "parents": [
        "fc3214952fac07fef7e102fdd4a18b3d736f33f1"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Nov 07 14:10:21 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Nov 07 14:10:21 2005 -0800"
      },
      "message": "[SUNSU]: Do not mark sunsu_console_setup() __init\n\nSets off buildcheck warnings.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "7f04d62b51828fa3d1dee9fd1ea7f37815595bfa",
      "tree": "c3b06bcefd4d7c086de2fa60d412f3b335ce3706",
      "parents": [
        "124df2df0c905b8762cd860a0e3fc9201fba8777"
      ],
      "author": {
        "name": "Greg Ungerer",
        "email": "gerg@snapgear.com",
        "time": "Mon Nov 07 14:09:50 2005 +1000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Nov 07 08:00:46 2005 -0800"
      },
      "message": "[PATCH] m68knommu: add 5208 ColdFire UART support to ColdFire serial driver\n\nAdd support for the Freescale 5208 processor UART\u0027s to the common\nColdFire serial port code.\n\nPatch originally from Matt Waddel (from code originally written by\nMike Lavender).\n\nSigned-off-by: Greg Ungerer \u003cgerg@uclinux.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3c76bc5bfda308aa42d5f42fde8dc1931e45e8a6",
      "tree": "2fd0ff833d85e68d50676cb74d3aef9be4f74ccf",
      "parents": [
        "a9a3047dd8ae43ff24caae5ec733a93df129568e"
      ],
      "author": {
        "name": "Nishanth Aravamudan",
        "email": "nacc@us.ibm.com",
        "time": "Mon Nov 07 01:01:21 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Nov 07 07:53:59 2005 -0800"
      },
      "message": "[PATCH] serial: fix-up schedule_timeout() usage\n\nUse schedule_timeout_uninterruptible() instead of\nset_current_state()/schedule_timeout() to reduce kernel size.\n\nSigned-off-by: Nishanth Aravamudan \u003cnacc@us.ibm.com\u003e\nCc: Russell King \u003crmk@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": "78512ece148992a5c00c63fbf4404f3cde635016",
      "tree": "0493561baab61e79aee4cf23a8ce5b01c360e7d9",
      "parents": [
        "0ad775dbba12de3b7d25f586efe81ad995ca75a7"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Nov 07 00:59:13 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Nov 07 07:53:35 2005 -0800"
      },
      "message": "[PATCH] serial console: touch NMI watchdog\n\nLarge console spews from IRQ or local_irq_disable() sections can cause the NMI\nwatchdog to go off.\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "21c614a7899046ab108b3d327d76c33443a8ebf2",
      "tree": "99cf486877f2a4133b5bfb262bc7aa0641cefd14",
      "parents": [
        "f912696ab330bf539231d1f8032320f2a08b850f"
      ],
      "author": {
        "name": "Pantelis Antoniou",
        "email": "pantelis.antoniou@gmail.com",
        "time": "Sun Nov 06 09:07:03 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sun Nov 06 09:07:03 2005 +0000"
      },
      "message": "[SERIAL] Support Au1x00 8250 UARTs using the generic 8250 driver.\n\nThe offsets of the registers are in a different place, and\nsome parts cannot handle a full set of modem control signals.\n\nSigned-off-by: Pantelis Antoniou \u003cpantelis@embeddedalley.ocm\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "c8ebce6eeb1f6f83fd8c0de209f1f7b627220a81",
      "tree": "398e03a622d469bcf770ac601708c6aeb25f07fc",
      "parents": [
        "0676fc122e712751e60ae16e0f2241064711f888",
        "b2281abf115031a5242647e0b5b170ffd3bca994"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 04 10:42:53 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Nov 04 10:42:53 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-serial\n"
    },
    {
      "commit": "d56c524afaa87ae224b5821ef101891ce076c321",
      "tree": "a35ad97919e7559443509a0e0c8ae72f41be7d9e",
      "parents": [
        "866237eafc60637a2c9875167486f61d86892c6b"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Fri Nov 04 17:28:34 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Fri Nov 04 17:28:34 2005 +0000"
      },
      "message": "[PATCH] ARM: Reverted 2918/1: [update] Base port of Comdial MP1000 platfrom\n\nNo longer maintained\n"
    },
    {
      "commit": "b2281abf115031a5242647e0b5b170ffd3bca994",
      "tree": "f626505d21050dde47730b3e2d46d6cf5eddd8cf",
      "parents": [
        "06024f217d607369f0ee0071034ebb03071d5fb2"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Thu Nov 03 21:07:37 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Thu Nov 03 21:07:37 2005 +0000"
      },
      "message": "[SERIAL] 8250_early.c passing 0 instead of NULL\n\nFix sparse warning about passing `0` to  simple_strtoul()\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "ec33b309101bb2904e9fe20252f7760e254d05ec",
      "tree": "13cde551f2ef845801d9e59081258572e1ac222a",
      "parents": [
        "7f36b1e9582c06d0ddef5f2416c9b17017647d1f",
        "913ade51eca369553a8ffbdaf1f426fade84f6ae"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Nov 01 21:32:46 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Nov 01 21:32:46 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-serial\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": "0cf669d5c5d08eb827df9867429df21cf030eba6",
      "tree": "6eb72f3c25f7acc0e67d0e954be8ee4525fbd4c7",
      "parents": [
        "e2f2e58e7968f8446b1078a20a18bf8ea12b4fbc"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Mon Oct 31 11:42:22 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Mon Oct 31 11:42:22 2005 +0000"
      },
      "message": "[SERIAL] Arrange better identification of ports\n\nFolk seem to get confused when they see two or more ttyS0 ports\nappearing at boot time.  One comes from the legacy table, and\none from PNP.\n\nHence, display the bus ID of the device which supplied the port.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "ed28f96ac1960f30f818374d65be71d2fdf811b0",
      "tree": "7229e77dbd27eee1378d1317c63c272dbe57cac0",
      "parents": [
        "1480d0a31db62b9803f829cc0e5cc71935ffe3cc",
        "a2436b22deac7834e0f87897b207a2dc1407dc40"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Oct 30 17:48:37 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Oct 30 17:48:37 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-serial\n"
    },
    {
      "commit": "f7232056bff5fe2d3bfeab35252a66ebaeb5bbde",
      "tree": "a3dd4fd813ca169e9364a1d751c6236c3d2715c4",
      "parents": [
        "6ea05db06f32adac65b4c4e95ef998839149de12"
      ],
      "author": {
        "name": "Carlos Sanchez",
        "email": "csanchez@windy.az.mvista.com",
        "time": "Sun Oct 30 15:02:53 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Oct 30 17:37:25 2005 -0800"
      },
      "message": "[PATCH] Added a Receive_Abort to the Marvell serial driver\n\nAdded a Receive_Abort to the Marvell serial driver\n\nFix occasional input overrun errors on Marvell serial driver\n\n- If the Marvell serial driver is repeatedly started and then stopped it\n  will occasionally report an input overrun error when started.\n\n- Added a Receive_Abort to the Marvell serial driver to abort previously\n  received receive errors when re-starting the receive\n\nAcked-by: Mark A. Greer \u003cmgreer@mvista.com\u003e\nSigned-off-by: Carlos Sanchez \u003ccsanchez@mvista.com\u003e\nCc: Russell King \u003crmk@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": "396dc44bcac58f464b7b23c345052e37881cccea",
      "tree": "1156e342fc1ec7ca157903487287b4f3a4047198",
      "parents": [
        "5b11687924e40790deb0d5f959247ade82196665"
      ],
      "author": {
        "name": "Pat Gefre",
        "email": "pfg@sgi.com",
        "time": "Sun Oct 30 15:02:49 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Oct 30 17:37:24 2005 -0800"
      },
      "message": "[PATCH] ioc4 serial support - mostly cleanup\n\nVarious small mods for the Altix ioc4 serial driver - mostly cleanup:\n- remove UIF_INITIALIZED usage\n- use the \u0027lock\u0027 from uart_port\n- better multiple card support\n\nSigned-off-by: Patrick Gefre \u003cpfg@sgi.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a2436b22deac7834e0f87897b207a2dc1407dc40",
      "tree": "4c4ad96ee6c55f3fe68605ef5bd1d98aca8d3092",
      "parents": [
        "9f75e1eff3edb2bb07349b94c28f4f2a6c66ca43"
      ],
      "author": {
        "name": "Jayachandran C",
        "email": "jchandra@digeo.com",
        "time": "Sun Oct 30 23:26:16 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sun Oct 30 23:26:16 2005 +0000"
      },
      "message": "[SERIAL] remove unneeded code from serial_core.c\n\nThis patch fixes an issue reported by Coverity in serial/serial_core.c\n\nError reported: Variable \"\u0026((info)-\u003etty)-\u003eflags\" tracked as NULL was passed to a\nfunction that dereferences it.\n\nThe later statements in the function assumes \u0027info-\u003etty !\u003d NULL\u0027, so this\ncheck is not necessary.  Probably a \u0027BUG_ON(info-\u003etty \u003d\u003d NULL)\u0027 can be added.\n\nSigned-off-by: Jayachandran C. \u003cc.jayachandran at gmail.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "8576762ff5d109b841fcf4e7d3883e0cf794f3cf",
      "tree": "ad8fc56461bc29531a2b42d71c17d1db3c909263",
      "parents": [
        "e32e28edc3d894201e15b19df627af66023aa91f"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Sun Oct 30 16:33:11 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sun Oct 30 16:33:11 2005 +0000"
      },
      "message": "[DRIVER MODEL] Add missing driver_unregister to IMX serial driver\n\nFix the IMX serial driver to unregister its driver structure\nwhen it is unloaded.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\nAcked-by: Greg Kroah-Hartman \u003cgregkh@suse.de\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": "84860bf0644d7c45afe7ddbd30731c3e3c371fae",
      "tree": "d6c4b98a9c3fd9981e7fcc5d7729c9e01e327767",
      "parents": [
        "8caf89157d64f1eedba37113afb4b303b2b3e301",
        "6fbfddcb52d8d9fa2cd209f5ac2a1c87497d55b5"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Oct 28 13:09:47 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Oct 28 13:09:47 2005 -0700"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/gregkh/driver-2.6\n"
    },
    {
      "commit": "6fbfddcb52d8d9fa2cd209f5ac2a1c87497d55b5",
      "tree": "c0414e89678fcef7ce3493e048d855bde781ae8d",
      "parents": [
        "1a222bca26ca691e83be1b08f5e96ae96d0d8cae",
        "27d1097d39509494706eaa2620ef3b1e780a3224"
      ],
      "author": {
        "name": "Greg KH",
        "email": "greg@press.(none)",
        "time": "Fri Oct 28 10:13:16 2005 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Fri Oct 28 10:13:16 2005 -0700"
      },
      "message": "Merge ../bleed-2.6\n"
    },
    {
      "commit": "8ed575904373d7aaab7f15a8db2edc317a44df43",
      "tree": "3b2e92a396a1bbec8e1fb499f25e8aed93ab5692",
      "parents": [
        "27d1097d39509494706eaa2620ef3b1e780a3224",
        "210cc679faf0e1cabda9fc5d1279644f5e52aecb"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Oct 28 10:08:46 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Oct 28 10:08:46 2005 -0700"
      },
      "message": "Merge branch \u0027forlinus\u0027 of git://parisc-linux.org/home/kyle/git/parisc-2.6\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": "d9e29649875df82828167dd45c802d942db863ba",
      "tree": "8ce0d5d46bde4a92e212aabe18a3a86f508c8fd4",
      "parents": [
        "80a18573cea2e6d8e95abe4d42bfc5f97761999a"
      ],
      "author": {
        "name": "Matt Reimer",
        "email": "mreimer@vpop.net",
        "time": "Fri Oct 28 16:25:02 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Fri Oct 28 16:25:02 2005 +0100"
      },
      "message": "[ARM] 3029/1: Add HWUART support for PXA 255/26x\n\nPatch from Matt Reimer\n\nAdds support for HWUART on PXA 255 / 26x. This patch originally came from\nhttp://svn.rungie.com/svn/gumstix-buildroot/trunk/sources/kernel-patches/000-gumstix-hwuart.patch\nand has been tweaked by me.\n\nSigned-off-by: Matt Reimer \u003cmreimer@vpop.net\u003e\nSigned-off-by: Nicolas Pitre \u003cnico@cam.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "0b83f1400fa6e5f0d4afcff033628a16c163862a",
      "tree": "c6fa01fd5a8d156b415ba9203f8ad349165de8ec",
      "parents": [
        "b57235215933d5fde4013e2448223b934b4ac2b7"
      ],
      "author": {
        "name": "Jon Ringle",
        "email": "jon.ringle@comdial.com",
        "time": "Fri Oct 28 16:19:37 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Fri Oct 28 16:19:37 2005 +0100"
      },
      "message": "[ARM] 2918/1: [update] Base port of Comdial MP1000 platfrom\n\nPatch from Jon Ringle\n\nUpdated 2898/1 per comments:\n- Removed fixup\n- Moved code in mach-mp1000/ to mach-clps711x/\n- Cleaned up code in mp1000-seprom.c. Eliminated code that displayed the contents of the eeprom\nPlease comment.\n\nSigned-off-by: Jon Ringle\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "c6b8fdad144bbb915d124ffd95011ad55730bf9f",
      "tree": "060b83a573584c69f3fad1f5eec723ae1cbbca28",
      "parents": [
        "766529fa2c95e2006ad4c4485c4cde0912d21f12"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Fri Oct 28 14:05:16 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Fri Oct 28 14:05:16 2005 +0100"
      },
      "message": "[ARM] 3/4: Remove asm/hardware.h from Versatile and Integrator io.h\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "e0f998930eb67c49f2862c58a45262ad0bc03eca",
      "tree": "d2bc6cbe11a00a05f96da01b1d4ac27adaabd546",
      "parents": [
        "6958ae318bb1af5e0b77968384700fb184fb8893",
        "7a4ed937aa44acdeb8c6ba671509dc7b54b09d3a"
      ],
      "author": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Wed Oct 26 23:28:40 2005 -0400"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Wed Oct 26 23:28:40 2005 -0400"
      },
      "message": "Auto-update from upstream\n"
    },
    {
      "commit": "551f8f0e87becb415c522adccab524a7a05ca83a",
      "tree": "90b0cc25cb78c1d062e16e7bf4c049b4556e69eb",
      "parents": [
        "add7b58e7558dd2894f3c17ca8574099fcba5c15"
      ],
      "author": {
        "name": "Justin Chen",
        "email": "justin.chen@hp.com",
        "time": "Mon Oct 24 22:16:38 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Mon Oct 24 22:16:38 2005 +0100"
      },
      "message": "[SERIAL] new hp diva console port\n\nAdd the new ID 0x132a and configure the new PCI Diva console port.  This\ndevice supports only 1 single console UART.\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "add7b58e7558dd2894f3c17ca8574099fcba5c15",
      "tree": "c9f5b250f8b1df7476d6fb36e311dc0b4bf5c005",
      "parents": [
        "d5c5d8fe32a4b9b14363c6031061e98e26da59a2"
      ],
      "author": {
        "name": "Bjorn Helgaas",
        "email": "bjorn.helgaas@hp.com",
        "time": "Mon Oct 24 22:11:57 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Mon Oct 24 22:11:57 2005 +0100"
      },
      "message": "[SERIAL] support the Exsys EX-4055 4S four-port card\n\nTested by Wolfgang Denk with this device:\n\n    00:0f.0 Network controller: PLX Technology, Inc. PCI \u003c-\u003e IOBus Bridge (rev 01)\n        Subsystem: Exsys EX-4055 4S(16C550) RS-232\n        Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B-\n        Status: Cap- 66Mhz- UDF- FastB2B+ ParErr- DEVSEL\u003dmedium \u003eTAbort- \u003cTAbort- \u003cMAbort- \u003eSERR- \u003cPERR-\n        Interrupt: pin A routed to IRQ 10\n        Region 0: Memory at 80100000 (32-bit, non-prefetchable) [size\u003d128]\n        Region 1: I/O ports at 7080 [size\u003d128]\n        Region 2: I/O ports at 7400 [size\u003d32]\n\n    00:0f.0 Class 0280: 10b5:9050 (rev 01)\n        Subsystem: d84d:4055\n\nResults with this patch:\n\n    Serial: 8250/16550 driver $Revision: 1.90 $ 32 ports, IRQ sharing enabled\n    ttyS0 at I/O 0x3f8 (irq \u003d 4) is a 16550A\n    PCI: Found IRQ 10 for device 0000:00:0f.0\n    ttyS4 at I/O 0x7400 (irq \u003d 10) is a 16550A\n    ttyS5 at I/O 0x7408 (irq \u003d 10) is a 16550A\n    ttyS6 at I/O 0x7410 (irq \u003d 10) is a 16550A\n    ttyS7 at I/O 0x7418 (irq \u003d 10) is a 16550A\n\nSigned-off-by: Bjorn Helgaas \u003cbjorn.helgaas@hp.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "ae8c75c1c47029a64976690c37336a2be6b49778",
      "tree": "4af797b490b210f40770d685cf89f760efe15199",
      "parents": [
        "27ee073cd2f72aa794299ef1ead31072f5176533"
      ],
      "author": {
        "name": "Matthew Wilcox",
        "email": "willy@parisc-linux.org",
        "time": "Fri Oct 21 22:58:03 2005 -0400"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Fri Oct 21 22:58:03 2005 -0400"
      },
      "message": "[PARISC] Fix mux.c driver\n\nMissing spin_lock_init() made the Mux driver hang on SMP systems.\n\nFix up users of -\u003ehpa to use -\u003ehpa.start instead\n\nRemove warning in 8250_gsc.c by eliminating serial_line_nr\n\nSigned-off-by: Matthew Wilcox \u003cwilly@parisc-linux.org\u003e\n\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "53f01bba49938f115237fe43a261c31ac13ae5c6",
      "tree": "df2a5fa9d95c7e69447ac0c89d6e149888c9bd1c",
      "parents": [
        "bdad1f836ab1ca2b18a625222f63f630cfd14e41"
      ],
      "author": {
        "name": "Matthew Wilcox",
        "email": "willy@parisc-linux.org",
        "time": "Fri Oct 21 22:36:40 2005 -0400"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Fri Oct 21 22:36:40 2005 -0400"
      },
      "message": "[PARISC] Convert parisc_device to use struct resource for hpa\n\nConvert pa_dev-\u003ehpa from an unsigned long to a struct resource.\n\nSigned-off-by: Matthew Wilcox \u003cwilly@parisc-linux.org\u003e\n\nFix up users of -\u003ehpa to use -\u003ehpa.start instead.\n\nSigned-off-by: Matthew Wilcox \u003cwilly@parisc-linux.org\u003e\n\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "bdad1f836ab1ca2b18a625222f63f630cfd14e41",
      "tree": "b52b796d4f93b56b8cf23b23219c7083e363c96b",
      "parents": [
        "5658374766d9e0249bd04e9d62bdb8456b916b64"
      ],
      "author": {
        "name": "Matthew Wilcox",
        "email": "willy@parisc-linux.org",
        "time": "Fri Oct 21 22:36:23 2005 -0400"
      },
      "committer": {
        "name": "Kyle McMartin",
        "email": "kyle@parisc-linux.org",
        "time": "Fri Oct 21 22:36:23 2005 -0400"
      },
      "message": "[PARISC] Change the driver names so /sys/bus/parisc/drivers/ looks better\n\nMake /sys/bus/parisc/drivers look better by cleaning up parisc_driver\nnames.\n\nSigned-off-by: Matthew Wilcox \u003cwilly@parisc-linux.org\u003e\n\nSigned-off-by: Kyle McMartin \u003ckyle@parisc-linux.org\u003e\n"
    },
    {
      "commit": "c1542cbc50d19565006633827532ab9f96c92cea",
      "tree": "588716807b050d961d239b18624c7fff5dbaaa82",
      "parents": [
        "7a3ca7d2b5ec31b2cfa594b961d77e68075e33c7"
      ],
      "author": {
        "name": "maximilian attems",
        "email": "janitor@sternwelten.at",
        "time": "Sat Oct 15 10:43:35 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Oct 15 10:43:35 2005 +0100"
      },
      "message": "[SERIAL] Add SupraExpress 56i support\n\nThe modem is said to work with belows addition to pnp_dev_table[]:\nhttp://bugs.debian.org/cgi-bin/bugreport.cgi?bug\u003d296011\n\nSigned-off-by: maximilian attems \u003cjanitor@sternwelten.at\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "bf7c7decb9752a3cb644b435cb354c8948606680",
      "tree": "457d3d4749be66d05f18857dbf57a84b532f2e3a",
      "parents": [
        "9e04099cb90dce6a34b4cbc6b4a0d4e4cc4c5680",
        "04f03bf7dbd04c15c30d91c6a277f6970cc4ef14"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Oct 14 17:16:55 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Oct 14 17:16:55 2005 -0700"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-serial\n"
    },
    {
      "commit": "d656901bca2e19057ca7a6e48bc56dec9ca7003e",
      "tree": "be4b71c139b837345c66ca6a3dd7ae88d9314538",
      "parents": [
        "63c6764ce4c650245a41a95a2235207d25ca4fde"
      ],
      "author": {
        "name": "Yoshinori Sato",
        "email": "ysato@users.sourceforge.jp",
        "time": "Fri Oct 14 15:59:12 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Oct 14 17:10:13 2005 -0700"
      },
      "message": "[PATCH] sh-sci.c sci_start_tx error\n\nArgument does not agree.\n\nSigned-off-by: Yoshinori Sato \u003cysato@users.sourceforge.jp\u003e\nCc: Paul Mundt \u003clethal@linux-sh.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "04f03bf7dbd04c15c30d91c6a277f6970cc4ef14",
      "tree": "2fd4ad00c404bb5306270445cfcd79b477c3cf5a",
      "parents": [
        "046d20b73960b7a2474b6d5e920d54c3fd7c23fe"
      ],
      "author": {
        "name": "Baris Cicek",
        "email": "baris@nerd.com.tr",
        "time": "Fri Oct 14 14:32:40 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Fri Oct 14 14:32:40 2005 +0100"
      },
      "message": "[SERIAL] Add SupraExpress 336i Sp ASVD modem ID\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "e6158b4a5647624ceb90074bfcc248ea3152c906",
      "tree": "1f8da50d47f8d4b5dd27b06fa694fb48e38162bb",
      "parents": [
        "6ec5e7f3656f0397b7e8b39a7dcc77937d187596"
      ],
      "author": {
        "name": "Lothar Wassmann",
        "email": "LW@KARO-electronics.de",
        "time": "Wed Oct 12 19:58:11 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Oct 12 19:58:11 2005 +0100"
      },
      "message": "[ARM] 3002/1: Wrong parameter to uart_update_timeout() in drivers/serial/pxa.c\n\nPatch from Lothar Wassmann\n\nThe function serial_pxa_set_termios() is calling uart_update_timeout()\nwith the baud rate divisor as third parameter, while\nuart_update_timeout() expects the baud rate in this place.\nThis results in a bogus port-\u003etimeout which is proportional to the\nbaud rate.\n\nSigned-off-by: Lothar Wassmann \u003cLW@KARO-electronics.de\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "ceca629e0b4858d6b8bff260dab2e947d31aca56",
      "tree": "56b9a6a6dbf1674c7111dfaa255f294c895dd4e2",
      "parents": [
        "9f693d7b149a74bac301ee47136359294cffed25"
      ],
      "author": {
        "name": "Sascha Hauer",
        "email": "sascha@saschahauer.de",
        "time": "Wed Oct 12 19:58:08 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Oct 12 19:58:08 2005 +0100"
      },
      "message": "[ARM] 2971/1: i.MX uart handle rts irq\n\nPatch from Sascha Hauer\n\nhandle rts interrupt\n\nSigned-off-by: Giancarlo Formicuccia \u003cgiancarlo.formicuccia@gmail.com\u003e\nSigned-off-by: Sascha Hauer \u003cs.hauer@pengutronix.de\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "17efa644f624a521e4a6c6a4641d39d227a9b24a",
      "tree": "4a47afcca1a87daae79781de03333b97de2b076e",
      "parents": [
        "0eea3c0b6cb356bc8e515084f831cac7e3d5131c"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Wed Oct 12 19:58:06 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Oct 12 19:58:06 2005 +0100"
      },
      "message": "[ARM] 2976/1: S3C2410: add static to functions in serial driver\n\nPatch from Ben Dooks\n\nThe s3c2410 serial driver is missing static declerations\non several functions that are not exported, and have no\nneed of being exported outside the driver\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "b8df110fea555d5088bba67f446c2435104405be",
      "tree": "1bb8dfc1a6eadcab3e6df99aff4ae6cde38e94b4",
      "parents": [
        "907a42617970a159361f17ef9a63f04d276995ab"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Oct 10 20:43:22 2005 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Oct 10 20:43:22 2005 -0700"
      },
      "message": "[SPARC64]: Fix oops on runlevel change with serial console.\n\nIncorrect uart_write_wakeup() calls cause reference to a\nNULL tty pointer in sunsab and sunzilog serial drivers.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "7dead80cbee3259e3a9f25bfc65c8dc769a19e0e",
      "tree": "7994d817862561babeb901eea46604b282f12c21",
      "parents": [
        "cdfc8f5079fdd18f6cb8097aa4235704d1155ec5"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Mon Oct 10 10:20:07 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Mon Oct 10 10:20:07 2005 +0100"
      },
      "message": "[ARM] 2964/1: S3C2410 - serial: add .owner to driver\n\nPatch from Ben Dooks\n\nInitialise the driver\u0027s .owner field so that\nthe device driver can be referenced to the\nmodule that owns it\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "86371d071bc38a181984b01d323b6172a4b7bb1f",
      "tree": "bc0e483864c97c0b38721ba4725028aa4d77116d",
      "parents": [
        "ce80cc14810fbd78fa70c15c7e16a0b26d462fc6"
      ],
      "author": {
        "name": "Sascha Hauer",
        "email": "sascha@saschahauer.de",
        "time": "Mon Oct 10 10:17:42 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Mon Oct 10 10:17:42 2005 +0100"
      },
      "message": "[ARM] 2957/1: imx UART Error handling\n\nPatch from Sascha Hauer\n\nFix error path in imx_startup.\n\nSigned-off-by: Giancarlo Formicuccia \u003cgformicuccia@atinno.com\u003e\nSigned-off-by: Sascha Hauer \u003cs.hauer@pengutronix.de\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "fdc657c66678551c7987dc23a78ae1a26251276f",
      "tree": "e8046592965a658370211f4068c1b9cdc5edb33e",
      "parents": [
        "3115624eda34d0f4e673fc6bcea36b7ad701ee33"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Oct 03 17:37:27 2005 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Oct 03 17:37:27 2005 -0700"
      },
      "message": "[SUNSU]: Fix bogus locking in sunsu_change_mouse_baud()\n\nThe lock is not held when calling this function, so we\nshouldn\u0027t drop then reacquire it.\n\nBased upon a report from Jim MacBaine.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "9f4426dde2be352aabc326539eccc726cea2d98c",
      "tree": "a36e6d4f5b808e74c3701572168a85e7b6403a45",
      "parents": [
        "f0e837d9182d7903bde3ebafbd1d0d68c6d32d43"
      ],
      "author": {
        "name": "Vincent Sanders",
        "email": "vince@kyllikki.org",
        "time": "Sat Oct 01 22:56:34 2005 +0100"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Oct 01 22:56:34 2005 +0100"
      },
      "message": "[ARM] 2944/1: GCC 4 mx1ads serial driver compile fix\n\nPatch from Vincent Sanders\n\nWhen building the mx1ads ARM platforms the serial driver fails to compile\nwith GCC 4.01 due to extern/static ambiguity.\n\nSigned-off-by: Vincent Sanders \u003cvince@arm.linux.org.uk\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "d38e24e260daf11365efd4ed621235fe9c0ba7ee",
      "tree": "8c5c9ccc6a4da494145d5c71ac3b27ed6b2c35d1",
      "parents": [
        "dd190d066b7ded8c44b2b67dd0a14bed01525d3c"
      ],
      "author": {
        "name": "Brent Casavant",
        "email": "bcasavan@sgi.com",
        "time": "Fri Sep 30 11:59:04 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Sep 30 12:41:18 2005 -0700"
      },
      "message": "[PATCH] ioc4_serial: Remove bogus error message\n\nThis change removes a bogus error message from the IOC4 serial driver\ninterrupt handler.\n\nThis error message is bogus for two reasons.  First, it can never occur\ngiven that current code takes care to initialize IOC4 in such a way that\nthese \"unknown\" interrupts could never occur.  Second, this code fails to\ntake into account that other drivers can share the IOC4 interrupt mechanism\nthrough SA_SHIRQ, and thus this driver is not in-fact \"all-knowing\".\n\nFinally, this error message triggers every time some \"unknown\" interrupt\noccurs -- it\u0027s not rate limited or repetition limited in any way, thereby\neffectively denying use of the console device.  Given its bogosity in the\nfirst place, it\u0027s best to just get rid of it entirely.\n\nAcked-by: Pat Gefre \u003cpfg@sgi.com\u003e\nSigned-off-by: Brent Casavant \u003cbcasavan@sgi.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1dd465cac8d3ba18a9840d032f6604147269c031",
      "tree": "78f00fdeae26d018def75e7517aa50e56f4994df",
      "parents": [
        "a2218cac0aacecbecebd3cabc43cc8a4a09cecbb",
        "217874feed0d3a6543a6b7127782f4a08bffd731"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Sep 30 08:39:56 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Sep 30 08:39:56 2005 -0700"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-arm\n"
    }
  ],
  "next": "b20fd6508c565df04a6b5816f17e03b04d4f924d"
}
