1. 21 5月, 2012 1 次提交
  2. 24 2月, 2012 2 次提交
  3. 23 2月, 2012 1 次提交
    • P
      ARM: vexpress: Get rid of MMIO_P2V · 98ed4ceb
      Pawel Moll 提交于
      This patch gets rid of the MMIO_P2V and __MMIO_P2V macros,
      defining constant virtual base for motherboard and tile
      peripherals instead.
      
      Additionally, in preparation for the new motherboard memory
      map, the motherboard peripherals are using base pointers
      calculated in runtime, instead of compile-time calculated
      values.
      Signed-off-by: NPawel Moll <pawel.moll@arm.com>
      98ed4ceb
  4. 25 1月, 2012 1 次提交
  5. 05 1月, 2012 1 次提交
  6. 22 12月, 2011 1 次提交
    • K
      driver-core: remove sysdev.h usage. · edbaa603
      Kay Sievers 提交于
      The sysdev.h file should not be needed by any in-kernel code, so remove
      the .h file from these random files that seem to still want to include
      it.
      
      The sysdev code will be going away soon, so this include needs to be
      removed no matter what.
      
      Cc: Jiandong Zheng <jdzheng@broadcom.com>
      Cc: Scott Branden <sbranden@broadcom.com>
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Kukjin Kim <kgene.kim@samsung.com>
      Cc: David Brown <davidb@codeaurora.org>
      Cc: Daniel Walker <dwalker@fifo99.com>
      Cc: Bryan Huntsman <bryanh@codeaurora.org>
      Cc: Ben Dooks <ben-linux@fluff.org>
      Cc: Wan ZongShun <mcuos.com@gmail.com>
      Cc: Haavard Skinnemoen <hskinnemoen@gmail.com>
      Cc: Hans-Christian Egtvedt <egtvedt@samfundet.no>
      Cc: Guan Xuetao <gxt@mprc.pku.edu.cn>
      Cc: "Venkatesh Pallipadi
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: "H. Peter Anvin" <hpa@zytor.com>
      Cc: Grant Likely <grant.likely@secretlab.ca>
      Cc: Richard Purdie <rpurdie@rpsys.net>
      Cc: Matthew Garrett <mjg@redhat.com>
      Signed-off-by: NKay Sievers <kay.sievers@vrfy.org>
      edbaa603
  7. 16 11月, 2011 1 次提交
  8. 24 8月, 2011 1 次提交
  9. 22 8月, 2011 1 次提交
  10. 06 6月, 2011 1 次提交
  11. 24 5月, 2011 4 次提交
  12. 21 5月, 2011 2 次提交
  13. 20 3月, 2011 1 次提交
  14. 19 2月, 2011 1 次提交
  15. 26 1月, 2011 2 次提交
  16. 05 1月, 2011 1 次提交
  17. 26 11月, 2010 1 次提交
  18. 04 11月, 2010 1 次提交
  19. 05 10月, 2010 1 次提交
    • R
      ARM: fix section mismatch warnings in Versatile Express · cdaf9a2f
      Russell King 提交于
      WARNING: vmlinux.o(.text+0xbf30): Section mismatch in reference from the function v2m_timer_init() to the function .init.text:sp804_clocksource_init()
      The function v2m_timer_init() references
      the function __init sp804_clocksource_init().
      This is often because v2m_timer_init lacks a __init
      annotation or the annotation of sp804_clocksource_init is wrong.
      
      WARNING: vmlinux.o(.text+0xbf3c): Section mismatch in reference from the function v2m_timer_init() to the function .init.text:sp804_clockevents_init()
      The function v2m_timer_init() references
      the function __init sp804_clockevents_init().
      This is often because v2m_timer_init lacks a __init
      annotation or the annotation of sp804_clockevents_init is wrong.
      
      WARNING: vmlinux.o(.text+0xc524): Section mismatch in reference from the function ct_ca9x4_init() to the function .init.text:l2x0_init()
      The function ct_ca9x4_init() references
      the function __init l2x0_init().
      This is often because ct_ca9x4_init lacks a __init
      annotation or the annotation of l2x0_init is wrong.
      
      WARNING: vmlinux.o(.text+0xc530): Section mismatch in reference from the function ct_ca9x4_init() to the function .init.text:clkdev_add_table()
      The function ct_ca9x4_init() references
      the function __init clkdev_add_table().
      This is often because ct_ca9x4_init lacks a __init
      annotation or the annotation of clkdev_add_table is wrong.
      
      WARNING: vmlinux.o(.text+0xc578): Section mismatch in reference from the function ct_ca9x4_init() to the (unknown reference) .init.data:(unknown)
      The function ct_ca9x4_init() references
      the (unknown reference) __initdata (unknown).
      This is often because ct_ca9x4_init lacks a __initdata
      annotation or the annotation of (unknown) is wrong.
      
      Fix these by making ct_ca9x4_init() and v2m_timer_init() both __init.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      cdaf9a2f
  20. 31 7月, 2010 1 次提交
  21. 22 7月, 2010 1 次提交
  22. 02 5月, 2010 1 次提交