1. 30 10月, 2013 1 次提交
  2. 03 9月, 2013 1 次提交
  3. 30 8月, 2013 1 次提交
  4. 26 8月, 2013 3 次提交
  5. 25 8月, 2013 1 次提交
  6. 10 7月, 2013 1 次提交
  7. 18 3月, 2013 1 次提交
  8. 13 1月, 2013 3 次提交
  9. 11 1月, 2013 1 次提交
  10. 25 12月, 2012 2 次提交
    • S
      ARM: delete struct sys_timer · 6bb27d73
      Stephen Warren 提交于
      Now that the only field in struct sys_timer is .init, delete the struct,
      and replace the machine descriptor .timer field with the initialization
      function itself.
      
      This will enable moving timer drivers into drivers/clocksource without
      having to place a public prototype of each struct sys_timer object into
      include/linux; the intent is to create a single of_clocksource_init()
      function that determines which timer driver to initialize by scanning
      the device dtree, much like the proposed irqchip_init() at:
      http://www.spinics.net/lists/arm-kernel/msg203686.html
      
      Includes mach-omap2 fixes from Igor Grinberg.
      Tested-by: NRobert Jarzmik <robert.jarzmik@free.fr>
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      6bb27d73
    • S
      ARM: set arch_gettimeoffset directly · 23c197b7
      Stephen Warren 提交于
      remove ARM's struct sys_timer .offset function pointer, and instead
      directly set the arch_gettimeoffset function pointer when the timer
      driver is initialized. This requires multiplying all function results
      by 1000, since the removed arm_gettimeoffset() did this. Also,
      s/unsigned long/u32/ just to make the function prototypes exactly
      match that of arch_gettimeoffset.
      
      Cc: Russell King <linux@arm.linux.org.uk>
      Cc: Andrew Victor <linux@maxim.org.za>
      Cc: Nicolas Ferre <nicolas.ferre@atmel.com>
      Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
      Cc: Hartley Sweeten <hsweeten@visionengravers.com>
      Cc: Ryan Mallon <rmallon@gmail.com>
      Cc: Ben Dooks <ben-linux@fluff.org>
      Cc: Kukjin Kim <kgene.kim@samsung.com>
      Signed-off-by: NStephen Warren <swarren@nvidia.com>
      23c197b7
  11. 12 12月, 2012 1 次提交
    • F
      ARM: ep93xx: properly wait for UART FIFO to be empty · 210dce5f
      Florian Fainelli 提交于
      This patch changes the busy-waiting loop around in the decompressor
      putc() function on the UART FIFO register. Without a proper wait, the
      output of the decompressor was corrupted like this:
      
      Uncompressing Linx. done, booting th enl
      
      To highlight the issue more evidently, looping 100 times instead of 1000
      makes the issue appear much faster. This patch takes the approach of
      using an active while loop until the FIFO is empty (not FULL).
      This issue happened to me on Sim.One running at 200Mhz.
      Signed-off-by: NFlorian Fainelli <florian@openwrt.org>
      Signed-off-by: NRyan Mallon <rmallon@gmail.com>
      210dce5f
  12. 17 9月, 2012 2 次提交
  13. 14 9月, 2012 2 次提交
  14. 07 9月, 2012 1 次提交
    • A
      ARM: ep93xx: Fix build error due to 'SZ_32M' undeclared · c0817056
      Axel Lin 提交于
      Include linux/sizes.h to fix below build errors:
      
        CC      arch/arm/mach-ep93xx/adssphere.o
      arch/arm/mach-ep93xx/adssphere.c: In function 'adssphere_init_machine':
      arch/arm/mach-ep93xx/adssphere.c:32:49: error: 'SZ_32M' undeclared (first use in this function)
      arch/arm/mach-ep93xx/adssphere.c:32:49: note: each undeclared identifier is reported only once for each function it appears in
      make[1]: *** [arch/arm/mach-ep93xx/adssphere.o] Error 1
      make: *** [arch/arm/mach-ep93xx] Error 2
      
        CC      arch/arm/mach-ep93xx/gesbc9312.o
      arch/arm/mach-ep93xx/gesbc9312.c: In function 'gesbc9312_init_machine':
      arch/arm/mach-ep93xx/gesbc9312.c:32:49: error: 'SZ_8M' undeclared (first use in this function)
      arch/arm/mach-ep93xx/gesbc9312.c:32:49: note: each undeclared identifier is reported only once for each function it appears in
      make[1]: *** [arch/arm/mach-ep93xx/gesbc9312.o] Error 1
      make: *** [arch/arm/mach-ep93xx] Error 2
      Signed-off-by: NAxel Lin <axel.lin@gmail.com>
      Signed-off-by: NRyan Mallon <rmallon@gmail.com>
      c0817056
  15. 11 6月, 2012 1 次提交
  16. 04 6月, 2012 2 次提交
  17. 14 5月, 2012 2 次提交
  18. 05 5月, 2012 1 次提交
  19. 12 4月, 2012 2 次提交
  20. 11 4月, 2012 2 次提交
  21. 28 3月, 2012 1 次提交
  22. 14 3月, 2012 8 次提交