1. 14 Jul, 2016 1 commit
    • Arnd Bergmann's avatar
      ARM: s3c64xx: avoid warning about 'struct device_node' · 979f97dd
      Arnd Bergmann authored
      The change to simplify of_platform_populate() had an unintended
      side-effect of introducing a build warning on s3c64xx:
      
      In file included from arch/arm/mach-s3c64xx/mach-s3c64xx-dt.c:18:0:
      arch/arm/mach-s3c64xx/common.h:27:30: error: 'struct device_node' declared inside parameter list will not be visible outside of this definition or declaration [-Werror]
      
      This adds a forward-declaration for the structure name in the
      header to avoid the warning.
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Fixes: 850bea23 ("arm: Remove unnecessary of_platform_populate with default match table")
      Acked-by: default avatarKrzysztof Kozlowski <k.kozlowski@samsung.com>
      979f97dd
  2. 07 Jul, 2016 1 commit
  3. 06 Jul, 2016 1 commit
    • Olof Johansson's avatar
      Merge tag 'imx-cleanup-4.8' of... · 8ec3dc29
      Olof Johansson authored
      Merge tag 'imx-cleanup-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux into next/cleanup
      
      The i.MX cleanup for 4.8:
       - A series from Arnd to clean up cpu_is_mx*() from i.MX platform
       - A series from Andrey to clean up i.MX L2-cache code by using
         core support as much as possible
       - Remove the orphan header eukrea-baseboards.h from i.MX platform
       - Remove boilerplate code from TZIC driver by using IRQCHIP_DECLARE
      
      * tag 'imx-cleanup-4.8' of git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux:
        ARM: imx: remove cpu_is_mx*()
        ARM: imx: remove last call to cpu_is_mx5*
        ARM: imx: rework mx27_pm_init() call
        ARM: imx: deconstruct mx3_idle
        ARM: imx: deconstruct mxc_rnga initialization
        ARM: imx: remove cpu_is_mx1 check
        ARM: i.MX: Do not explicitly call l2x0_of_init()
        ARM: i.MX: system.c: Tweak prefetch settings for performance
        ARM: i.MX: system.c: Replace magic numbers
        ARM: i.MX: system.c: Remove redundant errata 752271 code
        ARM: i.MX: system.c: Convert goto to if statement
        ARM: imx: Use IRQCHIP_DECLARE for TZIC
        ARM: imx: Remove orphan header
      Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
      8ec3dc29
  4. 05 Jul, 2016 1 commit
  5. 28 Jun, 2016 6 commits
  6. 21 Jun, 2016 6 commits
  7. 16 Jun, 2016 8 commits
  8. 13 Jun, 2016 6 commits
  9. 12 Jun, 2016 2 commits
  10. 03 Jun, 2016 3 commits
  11. 30 May, 2016 1 commit
  12. 29 May, 2016 3 commits
  13. 28 May, 2016 1 commit
    • Mikulas Patocka's avatar
      hpfs: implement the show_options method · 037369b8
      Mikulas Patocka authored
      The HPFS filesystem used generic_show_options to produce string that is
      displayed in /proc/mounts.  However, there is a problem that the options
      may disappear after remount.  If we mount the filesystem with option1
      and then remount it with option2, /proc/mounts should show both option1
      and option2, however it only shows option2 because the whole option
      string is replaced with replace_mount_options in hpfs_remount_fs.
      
      To fix this bug, implement the hpfs_show_options function that prints
      options that are currently selected.
      Signed-off-by: default avatarMikulas Patocka <mpatocka@redhat.com>
      Cc: stable@vger.kernel.org
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      037369b8