An error occurred fetching the project authors.
  1. 19 Jul, 2012 1 commit
  2. 26 Jan, 2012 1 commit
  3. 05 Jan, 2012 1 commit
  4. 31 Oct, 2011 1 commit
  5. 21 Aug, 2011 1 commit
  6. 12 Jul, 2011 1 commit
  7. 24 Apr, 2011 1 commit
  8. 21 Mar, 2011 1 commit
  9. 16 Mar, 2011 1 commit
  10. 16 Dec, 2010 2 commits
  11. 01 Dec, 2010 1 commit
  12. 20 Oct, 2010 1 commit
    • Nicolas Pitre's avatar
      arm: remove machine_desc.io_pg_offst and .phys_io · 6451d778
      Nicolas Pitre authored
      Since we're now using addruart to establish the debug mapping, we can
      remove the io_pg_offst and phys_io members of struct machine_desc.
      
      The various declarations were removed using the following script:
      
        grep -rl MACHINE_START arch/arm | xargs \
        sed -i '/MACHINE_START/,/MACHINE_END/ { /\.\(phys_io\|io_pg_offst\)/d }'
      
      [ Initial patch was from Jeremy Kerr, example script from Russell King ]
      Signed-off-by: default avatarNicolas Pitre <nicolas.pitre@linaro.org>
      Acked-by: Eric Miao <eric.miao at canonical.com>
      6451d778
  13. 05 Aug, 2010 1 commit
  14. 11 May, 2010 1 commit
  15. 01 Mar, 2010 2 commits
  16. 01 Dec, 2009 1 commit
  17. 10 Sep, 2009 2 commits
  18. 05 Jun, 2009 1 commit
  19. 09 Mar, 2009 1 commit
    • Eric Miao's avatar
      [ARM] pxa: introduce pxa{25x,27x,300,320,930}.h for board usage · 51c62982
      Eric Miao authored
      Considering the header mess ATM, it is not always possible to include
      the correct header files within board code. Let's keep this simple:
      
        <mach/pxa25x.h>  - for pxa25x based platforms
        <mach/pxa27x.h>  - for pxa27x based platforms
        <mach/pxa300.h>  - for pxa300 based platforms
        <mach/pxa320.h>  - for pxa320 based platforms
        <mach/pxa930.h>  - for pxa930 based platforms
      
      NOTE:
      
      1. one header one board file, they are not compatible (i.e. they have
         conflicting definitions which won't compile if included together).
      
      2. Unless strictly necessary, the following header files are considered
         to be SoC files use _only_, and is not recommended to be included in
         board code:
      
          <mach/hardware.h>
          <mach/pxa-regs.h>
          <mach/pxa2xx-regs.h>
          <mach/pxa3xx-regs.h>
          <mach/mfp.h>
          <mach/mfp-pxa2xx.h>
          <mach/mfp-pxa25x.h>
          <mach/mfp-pxa27x.h>
          <mach/mfp-pxa3xx.h>
          <mach/mfp-pxa300.h>
          <mach/mfp-pxa320.h>
          <mach/mfp-pxa930.h>
      Signed-off-by: default avatarEric Miao <eric.miao@marvell.com>
      51c62982
  20. 18 Oct, 2008 1 commit
  21. 07 Oct, 2008 1 commit
  22. 01 Oct, 2008 1 commit
  23. 07 Aug, 2008 2 commits
  24. 27 Jul, 2008 1 commit
  25. 12 Jul, 2008 1 commit
  26. 09 Jul, 2008 1 commit
  27. 02 Jun, 2008 1 commit
  28. 19 Apr, 2008 1 commit
  29. 06 Mar, 2008 1 commit
  30. 28 Jan, 2008 1 commit
  31. 12 Jul, 2007 2 commits
  32. 11 May, 2007 1 commit
  33. 13 Dec, 2006 1 commit
  34. 09 Oct, 2006 1 commit
    • David Howells's avatar
      IRQ: Use the new typedef for interrupt handler function pointers · 40220c1a
      David Howells authored
      Use the new typedef for interrupt handler function pointers rather than
      actually spelling out the full thing each time.  This was scripted with the
      following small shell script:
      
      #!/bin/sh
      egrep -nHrl -e 'irqreturn_t[ 	]*[(][*]' $* |
      while read i
      do
          echo $i
          perl -pi -e 's/irqreturn_t\s*[(]\s*[*]\s*([_a-zA-Z0-9]*)\s*[)]\s*[(]\s*int\s*,\s*void\s*[*]\s*[)]/irq_handler_t \1/g' $i || exit $?
      done
      Signed-Off-By: default avatarDavid Howells <dhowells@redhat.com>
      40220c1a
  35. 06 Oct, 2006 1 commit