1. 28 Jan, 2015 1 commit
    • Tony Lindgren's avatar
      ARM: dts: Fix dm816x pinctrl and syscon so they are children of SCM · 72d03226
      Tony Lindgren authored
      Looks like I only got half done with moving pinctrl and syscon to
      be children of the SCM. I've set up the FAPLL clocks that way already,
      but did not complete the job as I copied the syscon values from
      am33xx.dtsi.
      
      To make sure the syscon mapping works, I've verfified that we can
      set up davinci_emac mac address the same way as cpsw already does
      with the syscon mapping. So let's add that too.
      
      Cc: Brian Hutchinson <b.hutchman@gmail.com>
      Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
      72d03226
  2. 26 Jan, 2015 12 commits
  3. 20 Jan, 2015 1 commit
  4. 19 Jan, 2015 3 commits
  5. 13 Jan, 2015 2 commits
  6. 08 Jan, 2015 17 commits
  7. 07 Jan, 2015 2 commits
  8. 21 Dec, 2014 2 commits
    • Linus Torvalds's avatar
      Linux 3.19-rc1 · 97bf6af1
      Linus Torvalds authored
      97bf6af1
    • Linus Torvalds's avatar
      Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/borntraeger/linux · 60815cf2
      Linus Torvalds authored
      Pull ACCESS_ONCE cleanup preparation from Christian Borntraeger:
       "kernel: Provide READ_ONCE and ASSIGN_ONCE
      
        As discussed on LKML http://marc.info/?i=54611D86.4040306%40de.ibm.com
        ACCESS_ONCE might fail with specific compilers for non-scalar
        accesses.
      
        Here is a set of patches to tackle that problem.
      
        The first patch introduce READ_ONCE and ASSIGN_ONCE.  If the data
        structure is larger than the machine word size memcpy is used and a
        warning is emitted.  The next patches fix up several in-tree users of
        ACCESS_ONCE on non-scalar types.
      
        This does not yet contain a patch that forces ACCESS_ONCE to work only
        on scalar types.  This is targetted for the next merge window as Linux
        next already contains new offenders regarding ACCESS_ONCE vs.
        non-scalar types"
      
      * tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/borntraeger/linux:
        s390/kvm: REPLACE barrier fixup with READ_ONCE
        arm/spinlock: Replace ACCESS_ONCE with READ_ONCE
        arm64/spinlock: Replace ACCESS_ONCE READ_ONCE
        mips/gup: Replace ACCESS_ONCE with READ_ONCE
        x86/gup: Replace ACCESS_ONCE with READ_ONCE
        x86/spinlock: Replace ACCESS_ONCE with READ_ONCE
        mm: replace ACCESS_ONCE with READ_ONCE or barriers
        kernel: Provide READ_ONCE and ASSIGN_ONCE
      60815cf2