1. 04 2月, 2010 1 次提交
  2. 30 1月, 2010 1 次提交
  3. 10 1月, 2010 1 次提交
  4. 30 12月, 2009 2 次提交
  5. 16 12月, 2009 1 次提交
  6. 14 12月, 2009 3 次提交
  7. 08 12月, 2009 2 次提交
  8. 05 12月, 2009 1 次提交
  9. 24 11月, 2009 1 次提交
  10. 03 11月, 2009 1 次提交
  11. 18 10月, 2009 2 次提交
  12. 14 10月, 2009 1 次提交
    • T
      input: Remove BKL from hp_sdc_rtc · d2d23559
      Thomas Gleixner 提交于
      cycle_kernel_lock() was added during the big BKL pushdown. It should
      ensure the serializiation against driver init code. In this case there
      is nothing to serialize. Remove it.
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      LKML-Reference: <20091010153349.884891604@linutronix.de>
      Cc: Geert Uytterhoeven <geert@linux-m68k.org>
      Cc: Dmitry Torokhov <dtor@mail.ru>
      d2d23559
  13. 06 10月, 2009 3 次提交
  14. 05 10月, 2009 1 次提交
  15. 24 9月, 2009 1 次提交
    • I
      input: fix build failures caused by Kconfig Winbond WPCD376I Consumer IR... · d2b5ec3a
      Ingo Molnar 提交于
      input: fix build failures caused by Kconfig Winbond WPCD376I Consumer IR hardware driver Kconfig entry
      
      Fix these warnings:
      
        drivers/built-in.o: In function `apanel_remove':
        apanel.c:(.text+0x56e852): undefined reference to `led_classdev_unregister'
        drivers/built-in.o: In function `apanel_probe':
        apanel.c:(.text+0x56eae3): undefined reference to `led_classdev_register'
        drivers/built-in.o: In function `acpi_fujitsu_hotkey_add':
        fujitsu-laptop.c:(.text+0x5d7647): undefined reference to `led_classdev_register'
        fujitsu-laptop.c:(.text+0x5d76b5): undefined reference to `led_classdev_register'
        drivers/built-in.o: In function `wbcir_probe':
        winbond-cir.c:(.devinit.text+0x5f375): undefined reference to `led_classdev_register'
        winbond-cir.c:(.devinit.text+0x5f663): undefined reference to `led_classdev_unregister'
        drivers/built-in.o: In function `wbcir_remove':
        winbond-cir.c:(.devexit.text+0x7f23): undefined reference to `led_classdev_unregister'
        drivers/built-in.o: In function `fujitsu_cleanup':
        fujitsu-laptop.c:(.exit.text+0xbe37): undefined reference to `led_classdev_unregister'
        fujitsu-laptop.c:(.exit.text+0xbe53): undefined reference to `led_classdev_unregister'
      
      It happens because the new INPUT_WINBOND_CIR driver relies on new-leds
      infrastructure - but does not select it in drivers/input/misc/Kconfig.
      But it selects LEDS_CLASS, which confuses a number of other drivers into
      thinking that all the leds infrastructure is in place.
      
      Fix this by selecting NEW_LEDS as well, like similar drivers do.
      
      Eventually, this whole leds infrastructure complexity should be
      cleaned up, it's been going on for years.
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      Cc: Jesse Barnes <jbarnes@virtuousgeek.org>
      Cc: Dmitry Torokhov <dtor@mail.ru>
      Cc: David Härdeman <david@hardeman.nu>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      d2b5ec3a
  16. 22 9月, 2009 1 次提交
  17. 18 9月, 2009 1 次提交
  18. 17 9月, 2009 2 次提交
  19. 14 9月, 2009 1 次提交
  20. 09 8月, 2009 1 次提交
  21. 06 8月, 2009 1 次提交
    • T
      Input: wistron_btns - support Prestigio Wifi RF kill button · 19493478
      TJ 提交于
      The Prestigio 157, an old no-name clone laptop uses input keys very
      similar to the Wistron 1557/MS2141 with the addition of BIOS-controlled
      wireless radio frequency kill switch.
      
      This patch adds support for the RF kill switch control and adds manual
      identification of the model.
      
      The Prestigio does not expose any recognisable identity via dmidecode
      and so requires manual selection at module init using
      
      force=1 keymap=prestigio
      Signed-off-by: NTJ <ubuntu@tjworld.net>
      Signed-off-by: NDmitry Torokhov <dtor@mail.ru>
      19493478
  22. 23 7月, 2009 1 次提交
  23. 13 7月, 2009 2 次提交
    • F
      Input: pcspkr - switch driver to dev_pm_ops · 35db715b
      Frans Pop 提交于
      Gets rid of the following warning:
      Platform driver 'pcspkr' needs updating - please use dev_pm_ops
      Signed-off-by: NFrans Pop <elendil@planet.nl>
      Signed-off-by: NDmitry Torokhov <dtor@mail.ru>
      35db715b
    • G
      Input: wistron_btns - recognize Maxdata Pro 7000 notebooks · e705cee4
      Giuseppe Mazzotta 提交于
      This patch adds DMI information to automatically load the correct
      layout for the Maxdata Pro 7000X/DX notebook models. Such notebooks
      are clones of Fujitsu Amilo V2000, the hook for the v2000 is being
      used and I have tested that perfectly works.
      
      The immediate result of integrating this patch is that the five
      special buttons will work on these specific notebook models and that
      the RF killswitch will not be activated after suspend. This patch
      definitively obsoletes the fsam7400 module which I was still needing
      to enable wifi and to fix the RF killswitch suspend problem; in the
      current 2.6.30 kernel it is necessary to load the wistron_btns module
      with options 'force=1 keymap=1557/MS2141', which was not anyway a
      complete workaround.
      Signed-off-by: NGiuseppe Mazzotta <g.mazzotta@iragan.com>
      Signed-off-by: NDmitry Torokhov <dtor@mail.ru>
      e705cee4
  24. 08 7月, 2009 1 次提交
  25. 03 7月, 2009 1 次提交
  26. 29 6月, 2009 1 次提交
  27. 17 6月, 2009 1 次提交
    • A
      time: move PIT_TICK_RATE to linux/timex.h · 08604bd9
      Arnd Bergmann 提交于
      PIT_TICK_RATE is currently defined in four architectures, but in three
      different places.  While linux/timex.h is not the perfect place for it, it
      is still a reasonable replacement for those drivers that traditionally use
      asm/timex.h to get CLOCK_TICK_RATE and expect it to be the PIT frequency.
      
      Note that for Alpha, the actual value changed from 1193182UL to 1193180UL.
       This is unlikely to make a difference, and probably can only improve
      accuracy.  There was a discussion on the correct value of CLOCK_TICK_RATE
      a few years ago, after which every existing instance was getting changed
      to 1193182.  According to the specification, it should be
      1193181.818181...
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Cc: Richard Henderson <rth@twiddle.net>
      Cc: Ivan Kokshaysky <ink@jurassic.park.msu.ru>
      Cc: Ralf Baechle <ralf@linux-mips.org>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Cc: Ingo Molnar <mingo@elte.hu>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: "H. Peter Anvin" <hpa@zytor.com>
      Cc: Len Brown <lenb@kernel.org>
      Cc: john stultz <johnstul@us.ibm.com>
      Cc: Dmitry Torokhov <dtor@mail.ru>
      Cc: Takashi Iwai <tiwai@suse.de>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      08604bd9
  28. 13 6月, 2009 1 次提交
  29. 20 5月, 2009 1 次提交
  30. 16 5月, 2009 1 次提交
  31. 24 4月, 2009 1 次提交
    • D
      Input: add dm355evm_keys driver · eb990b55
      David Brownell 提交于
      Simple input driver support for the events reported by the
      MSP430 firmware on the DM355 EVM.  Verified using the RC5
      remote included with the kit; docs weren't quite right.
      
      Some of the keycode selections might need improvement; they
      can be remapped, so there's at least a runtime workaround.
      (I also suspect Linux may someday merit more generic support
      for RC5 based remote controls.)
      
      These events don't distinguish key press vs release events,
      so this reports both and then skips the next event if it's
      identical.  The RC5 remote codes include a "toggle" bit that
      can help detect autorepeated keys; but this driver doesn't
      bother with those nuances.
      
      This driver relies on the drivers/mfd/dm355evm_msp.c code
      for core features, including sharing I2C access to this
      firmware with GPIO, LED, and RTC support.
      
      [dtor@mail.ru: fix error unwindng path in probe()]
      Signed-off-by: NDavid Brownell <dbrownell@users.sourceforge.net>
      Signed-off-by: NKevin Hilman <khilman@deeprootsystems.com>
      Signed-off-by: NDmitry Torokhov <dtor@mail.ru>
      eb990b55