1. 02 3月, 2010 2 次提交
  2. 17 2月, 2010 1 次提交
  3. 09 2月, 2010 1 次提交
  4. 15 12月, 2009 1 次提交
  5. 25 9月, 2009 1 次提交
  6. 13 8月, 2009 1 次提交
  7. 04 8月, 2009 1 次提交
  8. 23 7月, 2009 2 次提交
    • M
      sh: convert processor device setup functions to arch_initcall() · 955c9863
      Magnus Damm 提交于
      Convert the processor platform device setup
      functions from __initcall() and sometimes
      device_initcall() to arch_initcall().
      
      This makes sure that the platform devices are
      registered a bit earlier so the devices are
      available when drivers register using initcall
      levels earlier than device_initcall().
      
      A good example is platform devices needed by
      i2c-sh_mobile.c which registers a bit earlier
      using subsys_initcall().
      Signed-off-by: NMagnus Damm <damm@igel.co.jp>
      Signed-off-by: NPaul Mundt <lethal@linux-sh.org>
      955c9863
    • M
      usb: m66592-udc platform data on_chip support · 2c59b0b7
      Magnus Damm 提交于
      Convert the m66592-udc driver to use the on_chip flag
      from platform data to enable on chip behaviour instead
      of relying on CONFIG_SUPERH_BUILT_IN_M66592 ugliness.
      
      This makes the code cleaner and also allows us to support
      both external and internal m66592 with the same kernel.
      
      It also makes the Kconfig part more future proof since
      we with this patch can add support for new processors
      with on-chip m66592 without modifying the Kconfig.
      
      The patch adds a m66592 header file for platform data
      and ties in platform data to the existing m66592 devices.
      Signed-off-by: NMagnus Damm <damm@igel.co.jp>
      Signed-off-by: NPaul Mundt <lethal@linux-sh.org>
      2c59b0b7
  9. 12 5月, 2009 1 次提交
  10. 08 5月, 2009 2 次提交
  11. 03 5月, 2009 2 次提交
  12. 19 4月, 2009 1 次提交
  13. 16 4月, 2009 1 次提交
  14. 29 1月, 2009 1 次提交
  15. 21 1月, 2009 1 次提交
  16. 22 12月, 2008 4 次提交
  17. 28 10月, 2008 1 次提交
  18. 28 7月, 2008 4 次提交
  19. 23 5月, 2008 1 次提交
  20. 19 4月, 2008 2 次提交
  21. 26 2月, 2008 1 次提交
    • P
      serial: Move asm-sh/sci.h to linux/serial_sci.h. · 96de1a8f
      Paul Mundt 提交于
      This header is needed on other architectures as well (namely h8300),
      which currently fails to build without this in place. Rather than
      duplicating the port definition completely there, just move this to a
      common location instead.
      
      This should get h8300 working again for 2.6.25, in addition to the
      changes already pushed by Sato-san in -rc2.
      Signed-off-by: NPaul Mundt <lethal@linux-sh.org>
      96de1a8f
  22. 28 1月, 2008 1 次提交
  23. 30 10月, 2007 1 次提交
  24. 21 9月, 2007 2 次提交
  25. 20 7月, 2007 3 次提交
  26. 15 6月, 2007 1 次提交
    • M
      sh: rework ipr code · 68abdbbb
      Magnus Damm 提交于
      This patch reworks the ipr code by grouping the offset array together
      with the ipr_data structure in a new data structure called ipr_desc.
      This new structure also contains the name of the controller in struct
      irq_chip. The idea behind putting struct irq_chip in there is that we
      can use offsetof() to locate the base addresses in the irq_chip
      callbacks. This strategy has much in common with the recently merged
      intc2 code.
      
      One logic change has been made - the original ipr code enabled the
      interrupts by default but with this patch they are all disabled by
      default.
      Signed-off-by: NMagnus Damm <damm@igel.co.jp>
      Signed-off-by: NPaul Mundt <lethal@linux-sh.org>
      68abdbbb