You need to sign in or sign up before continuing.
  1. 03 2月, 2012 7 次提交
  2. 27 1月, 2012 2 次提交
  3. 25 1月, 2012 2 次提交
  4. 13 1月, 2012 1 次提交
  5. 05 1月, 2012 10 次提交
  6. 04 1月, 2012 3 次提交
  7. 28 12月, 2011 2 次提交
    • S
      serial: mxs-auart: convert to clk_prepare/clk_unprepare · a4813770
      Shawn Guo 提交于
      The patch converts mxs-auart driver to clk_prepare/clk_unprepare by
      using helper functions clk_prepare_enable/clk_disable_unprepare.
      Signed-off-by: NShawn Guo <shawn.guo@linaro.org>
      Cc: Sascha Hauer <s.hauer@pengutronix.de>
      Cc: Alan Cox <alan@linux.intel.com>
      a4813770
    • S
      apbuart: fix section mismatch warning · ab17da5c
      Sam Ravnborg 提交于
      Fix following warnings:
      
      WARNING: drivers/tty/serial/built-in.o(.text+0x7370): Section mismatch in reference from the function grlib_apbuart_configure() to the variable .init.data:apbuart_match
      The function grlib_apbuart_configure() references
      the variable __initdata apbuart_match.
      This is often because grlib_apbuart_configure lacks a __initdata
      annotation or the annotation of apbuart_match is wrong.
      
      + 3 more warnings like this.
      
      There is no guarantee that grlib_apbuart_of_driver.of_match_table
      is only used at __init time - so drop the __initdata annotation.
      
      grlib_apbuart_configure() is only used during __init so add __init
      to this method too.
      Signed-off-by: NSam Ravnborg <sam@ravnborg.org>
      Cc: Daniel Hellstrom <daniel@gaisler.com>
      Cc: Greg Kroah-Hartman <gregkh@suse.de>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      ab17da5c
  8. 23 12月, 2011 9 次提交
  9. 17 12月, 2011 3 次提交
  10. 16 12月, 2011 1 次提交
    • B
      tty/serial/pmac_zilog: Fix suspend & resume · a79dd5ae
      Benjamin Herrenschmidt 提交于
      This patch reworks & simplifies pmac_zilog handling of suspend/resume,
      essentially removing all the specific code in there and using the
      generic uart helpers.
      
      This required properly registering the tty as a child of the macio (or platform)
      device, so I had to delay the registration a bit (we used to register the ports
      very very early). We still register the kernel console early though.
      
      I removed a couple of unused or useless flags as well, relying on the
      core to not call us when asleep. I also removed the essentially useless
      interrupt mutex, simplifying the locking a bit.
      
      I removed some code for handling unexpected interrupt which should never
      be hit and could potentially be harmful (causing us to access a register
      on a powered off SCC). We diable port interrupts on close always so there
      should be no need to drain data on a closed port.
      Signed-off-by: NBenjamin Herrenschmidt <benh@kernel.crashing.org>
      a79dd5ae