1. 23 Oct, 2015 1 commit
    • Olof Johansson's avatar
      Merge tag 'pxa-for-4.4' of https://github.com/rjarzmik/linux into next/cleanup · 7b6e28c3
      Olof Johansson authored
      This is the pxa changes for v4.4 cycle.
      
      This cycle is bigger than usual :
       - magician was greatly enhanced (new IPs discovered, ...)
       - almost all legacy board files have been updated to the
         new PWM API (mostly for backlight control)
       - some minor fixes in raumfeld, z2 and mioa701
      
      * tag 'pxa-for-4.4' of https://github.com/rjarzmik/linux: (44 commits)
        ARM: pxa: remove incorrect __init annotation on pxa27x_set_pwrmode
        ARM: pxa: raumfeld: make some variables static
        ARM: pxa: magician: Remove pdata for pasic3-leds
        ARM: pxa: magician: Add support for PXA27x UDC
        ARM: pxa: magician: Add support for MAX1587A Vcore regulator
        ARM: pxa: magician: Change comments to be more informative
        ARM: pxa: magician: Move platform_add_devices() to the end of magician_init()
        ARM: pxa: magician: Add missing regulator for PWM backlight
        ARM: pxa: magician: Add debug message for backlight brightness function
        ARM: pxa: magician: Remove definition of the STUART port
        ARM: pxa: magician: Fix wrongly enabled USB host ports
        ARM: pxa: magician: Fix support for Intel Strata NOR Flash
        ARM: pxa: magician: Fix redundant GPIO request for pxaficp_ir
        ARM: pxa: magician: Fix platform data for both PXA27x I2C controllers
        ARM: pxa: magician: Fix and add charging detection functions
        ARM: pxa: magician: Optimize Samsung LCD refresh to 50Hz
        ARM: pxa: magician: Rename charger cable detection EGPIOs
        ARM: pxa: magician: Optimize powerup delays for Samsung LCD
        ARM: pxa: magician: Rename abstract LCD GPIOs
        ARM: pxa: magician: Add new discovered EGPIO pins
        ...
      Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
      7b6e28c3
  2. 22 Oct, 2015 4 commits
  3. 16 Oct, 2015 2 commits
    • Arnd Bergmann's avatar
      ARM: pxa: remove incorrect __init annotation on pxa27x_set_pwrmode · 54c09889
      Arnd Bergmann authored
      The z2 machine calls pxa27x_set_pwrmode() in order to power off
      the machine, but this function gets discarded early at boot because
      it is marked __init, as pointed out by kbuild:
      
      WARNING: vmlinux.o(.text+0x145c4): Section mismatch in reference from the function z2_power_off() to the function .init.text:pxa27x_set_pwrmode()
      The function z2_power_off() references
      the function __init pxa27x_set_pwrmode().
      This is often because z2_power_off lacks a __init
      annotation or the annotation of pxa27x_set_pwrmode is wrong.
      
      This removes the __init section modifier to fix rebooting and the
      build error.
      Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
      Fixes: ba4a90a6 ("ARM: pxa/z2: fix building error of pxa27x_cpu_suspend() no longer available")
      Signed-off-by: default avatarRobert Jarzmik <robert.jarzmik@free.fr>
      54c09889
    • Uwe Kleine-König's avatar
      ARM: pxa: raumfeld: make some variables static · 4a672bfe
      Uwe Kleine-König authored
      This fixes the following sparse warnings:
      
      	arch/arm/mach-pxa/raumfeld.c:510:24: warning: symbol 'raumfeld_w1_gpio_device' was not declared. Should it be static?
      	arch/arm/mach-pxa/raumfeld.c:632:31: warning: symbol 'raumfeld_spi_platform_data' was not declared. Should it be static?
      	arch/arm/mach-pxa/raumfeld.c:851:28: warning: symbol 'audio_va_initdata' was not declared. Should it be static?
      	arch/arm/mach-pxa/raumfeld.c:883:28: warning: symbol 'audio_dummy_initdata' was not declared. Should it be static?
      	arch/arm/mach-pxa/raumfeld.c:931:28: warning: symbol 'max8660_v6_subdev_data' was not declared. Should it be static?
      Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
      Acked-by: default avatarDaniel Mack <daniel@zonque.org>
      Signed-off-by: default avatarRobert Jarzmik <robert.jarzmik@free.fr>
      4a672bfe
  4. 15 Oct, 2015 3 commits
  5. 14 Oct, 2015 30 commits