1. 24 Nov, 2011 21 commits
  2. 23 Nov, 2011 3 commits
    • Mauro Carvalho Chehab's avatar
      Merge tag 'v3.2-rc2' into staging/for_v3.3 · 12cbfd0a
      Mauro Carvalho Chehab authored
      * tag 'v3.2-rc2': (3068 commits)
        Linux 3.2-rc2
        hfs: add sanity check for file name length
        fsl-rio: fix compile error
        blackfin: Fixup export.h includes
        Blackfin: add serial TX IRQ in individual platform resource
        virtio-pci: fix use after free
        ACPI / cpuidle: Remove acpi_idle_suspend (to fix suspend regression)
        drm/radeon/kms/combios: fix dynamic allocation of PM clock modes
        [CPUFREQ] db8500: fix build error due to undeclared i variable
        bma023: Add SFI translation for this device
        vrtc: change its year offset from 1960 to 1972
        ce4100: fix a build error
        arm/imx: fix imx6q mmc error when mounting rootfs
        arm/imx: fix AUTO_ZRELADDR selection
        arm/imx: fix the references to ARCH_MX3
        ARM: mx51/53: set pwm clock parent to ipg_perclk
        btrfs: rename the option to nospace_cache
        drm/radeon/kms/pm: switch to dynamically allocating clock mode array
        drm/radeon/kms: optimize r600_pm_profile_init
        drm/radeon/kms/pm: add a proper pm profile init function for fusion
        ...
      
      Conflicts:
      	drivers/media/radio/Kconfig
      12cbfd0a
    • Mauro Carvalho Chehab's avatar
      [media] rc: Add support for decoding Sanyo protocol · b32e7243
      Mauro Carvalho Chehab authored
      This protocol is found on Sanyo/Aiwa remotes.
      
      Tested with an Aiwa RC-7AS06 remote control.
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
      b32e7243
    • Mauro Carvalho Chehab's avatar
  3. 21 Nov, 2011 1 commit
  4. 20 Nov, 2011 5 commits
  5. 16 Nov, 2011 1 commit
  6. 15 Nov, 2011 7 commits
  7. 14 Nov, 2011 2 commits
    • Liu Gang's avatar
      fsl-rio: fix compile error · e0ce42e1
      Liu Gang authored
      The "#include <linux/module.h>" was replaced by "#include <linux/export.h>"
      in the patch "powerpc: various straight conversions from module.h --> export.h".
      This will cause the following compile problem:
      arch/powerpc/sysdev/fsl_rio.c: In function 'fsl_rio_mcheck_exception':
      arch/powerpc/sysdev/fsl_rio.c:296: error: implicit declaration of function 'search_exception_tables'.
      
      The file fsl_rio.c needs the declaration of function "search_exception_tables"
      in the header file "linux/module.h".
      Signed-off-by: default avatarLiu Gang <Gang.Liu@freescale.com>
      Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
      e0ce42e1
    • Lars-Peter Clausen's avatar
      blackfin: Fixup export.h includes · 90590543
      Lars-Peter Clausen authored
      Commit 8dc7a9c8 ("blackfin: Add export.h to files using
      EXPORT_SYMBOL/THIS_MODULE") inserted some of the include statements into
      sections protected by an unrelated #if CONFIG_... statement. This can cause,
      depending on the configuration used, warnings like this one:
      
      	arch/blackfin/mach-bf537/boards/stamp.c:2940: warning: data definition has no type or storage class
      	arch/blackfin/mach-bf537/boards/stamp.c:2940: warning: type defaults to ‘int’ in declaration of ‘EXPORT_SYMBOL’
      	arch/blackfin/mach-bf537/boards/stamp.c:2940: warning: parameter names (without types) in function declaration
      
      This patch fixes it by moving the includes out of the #if protected sections.
      Signed-off-by: default avatarLars-Peter Clausen <lars@metafoo.de>
      Acked-by: default avatarMike Frysinger <vapier@gentoo.org>
      Signed-off-by: default avatarBob Liu <lliubbo@gmail.com>
      90590543