1. 31 5月, 2011 3 次提交
    • S
      OMAP2+: Fix 9 section mismatch(es) warnings from mach-omap2/built-in.o · 89c4705e
      Santosh Shilimkar 提交于
      The serial*_data should have been marked as __initdata as per
      it's usage in the board files. Fix the same to remove the
      section mismatch warnings caused by it.
      Signed-off-by: NSantosh Shilimkar <santosh.shilimkar@ti.com>
      Signed-off-by: NSilesh C V <silesh@ti.com>
      [tony@atomide.com: updated with additional fixes from Silesh]
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      89c4705e
    • A
      ARM: OMAP2: Add missing include of linux/gpio.h · f9fa1bb9
      Axel Lin 提交于
      I got some build error like below while executing "make omap2plus_defconfig".
      
        CC      arch/arm/mach-omap2/board-2430sdp.o
      arch/arm/mach-omap2/board-2430sdp.c: In function 'omap_2430sdp_init':
      arch/arm/mach-omap2/board-2430sdp.c:247: error: 'GPIOF_OUT_INIT_LOW' undeclared (first use in this function)
      arch/arm/mach-omap2/board-2430sdp.c:247: error: (Each undeclared identifier is reported only once
      arch/arm/mach-omap2/board-2430sdp.c:247: error: for each function it appears in.)
      
      This patch fixes the build error by include linux/gpio.h instead of mach/gpio.h.
      Signed-off-by: NAxel Lin <axel.lin@gmail.com>
      Cc: Syed Mohammed Khasim <x0khasim@ti.com>
      Cc: Grazvydas Ignotas <notasas@gmail.com>
      Cc: Steve Sakoman <steve@sakoman.com>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      f9fa1bb9
    • J
      OMAP: fix compilation error · 046d886d
      Janusz Krzysztofik 提交于
      Forward-declare platform_device structure in
      arch/arm/plat-omap/include/plat/flash.h, otherwise compilation may break
      with:
      
      In file included from arch/arm/mach-omap1/flash.c:15:
      arch/arm/plat-omap/include/plat/flash.h:14: warning: 'struct platform_device' declared inside parameter list
      arch/arm/plat-omap/include/plat/flash.h:14: warning: its scope is only this definition or declaration, which is probably not what you want
      arch/arm/mach-omap1/flash.c:16: warning: 'struct platform_device' declared inside parameter list
      arch/arm/mach-omap1/flash.c:17: error: conflicting types for 'omap1_set_vpp'
      arch/arm/plat-omap/include/plat/flash.h:14: error: previous declaration of 'omap1_set_vpp' was here
      
      Detected and corrected while building for Amstrad Delta, confirmed with
      omap1_defconfig.
      Signed-off-by: NJanusz Krzysztofik <jkrzyszt@tis.icnet.pl>
      Signed-off-by: NTony Lindgren <tony@atomide.com>
      046d886d
  2. 29 5月, 2011 1 次提交
    • E
      ns: Wire up the setns system call · 7b21fddd
      Eric W. Biederman 提交于
      32bit and 64bit on x86 are tested and working.  The rest I have looked
      at closely and I can't find any problems.
      
      setns is an easy system call to wire up.  It just takes two ints so I
      don't expect any weird architecture porting problems.
      
      While doing this I have noticed that we have some architectures that are
      very slow to get new system calls.  cris seems to be the slowest where
      the last system calls wired up were preadv and pwritev.  avr32 is weird
      in that recvmmsg was wired up but never declared in unistd.h.  frv is
      behind with perf_event_open being the last syscall wired up.  On h8300
      the last system call wired up was epoll_wait.  On m32r the last system
      call wired up was fallocate.  mn10300 has recvmmsg as the last system
      call wired up.  The rest seem to at least have syncfs wired up which was
      new in the 2.6.39.
      
      v2: Most of the architecture support added by Daniel Lezcano <dlezcano@fr.ibm.com>
      v3: ported to v2.6.36-rc4 by: Eric W. Biederman <ebiederm@xmission.com>
      v4: Moved wiring up of the system call to another patch
      v5: ported to v2.6.39-rc6
      v6: rebased onto parisc-next and net-next to avoid syscall  conflicts.
      v7: ported to Linus's latest post 2.6.39 tree.
      
      >  arch/blackfin/include/asm/unistd.h     |    3 ++-
      >  arch/blackfin/mach-common/entry.S      |    1 +
      Acked-by: NMike Frysinger <vapier@gentoo.org>
      
      Oh - ia64 wiring looks good.
      Acked-by: NTony Luck <tony.luck@intel.com>
      Signed-off-by: NEric W. Biederman <ebiederm@xmission.com>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      7b21fddd
  3. 28 5月, 2011 1 次提交
  4. 27 5月, 2011 13 次提交
  5. 26 5月, 2011 13 次提交
  6. 25 5月, 2011 9 次提交