1. 04 5月, 2010 2 次提交
    • T
      omap: Use a memory address for storing the debug port info instead of UART1 scratchpad · 96554d70
      Tony Lindgren 提交于
      This removes the dependency to the UART1 being available for storing
      the debug configuration in uncompress.h. This will simplify the
      DEBUG_LL UART configuration for boards that may not have UART1, or
      have an external UART as it requires only one mapping for DEBUG_LL.
      
      The patch has a few limitations. Basically now we're assuming that
      the kernel uncompress code won't overlap with OMAP_UART_INFO. We also
      assume the printascii is called at least once before paging_init in
      order for addruart to have a chance to read the UART setup from
      OMAP_UART_INFO.
      
      As suggested by Cyril Chemparathy <cyril@ti.com>,
      Vikram Pandita <vikram.pandita@ti.com> and
      Kevin Hilman <khilman@deeprootsystems.com>. Based on an earlier
      patch posted for Davinci by Cyril Chemparathy <cyril@ti.com>.
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      96554d70
    • T
      omap2/3/4: Fix multi.h when omap3 and omap4 are selected without omap2 · daa49495
      Tony Lindgren 提交于
      Otherwise we'll get an error about get_irqnr_and_base being defined
      twice. Add an entry for omap4, and use ARCH_OMAP3 for omap3 instead of
      ARCH_OMAP3430.
      
      Also fix the check for omap1 to use ARCH_OMAP2PLUS to avoid having to
      add ARCH_OMAP4 separately there.
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      daa49495
  2. 29 4月, 2010 1 次提交
  3. 24 4月, 2010 24 次提交
  4. 23 4月, 2010 4 次提交
  5. 22 4月, 2010 1 次提交
  6. 21 4月, 2010 1 次提交
    • R
      ARM: fix build error in arch/arm/kernel/process.c · 4260415f
      Russell King 提交于
      /tmp/ccJ3ssZW.s: Assembler messages:
      /tmp/ccJ3ssZW.s:1952: Error: can't resolve `.text' {.text section} - `.LFB1077'
      
      This is caused because:
      
      	.section .data
      	.section .text
      	.section .text
      	.previous
      
      does not return us to the .text section, but the .data section; this
      makes use of .previous dangerous if the ordering of previous sections
      is not known.
      
      Fix up the other users of .previous; .pushsection and .popsection are
      a safer pairing to use than .section and .previous.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      4260415f
  7. 14 4月, 2010 6 次提交
  8. 09 4月, 2010 1 次提交