1. 04 11月, 2015 3 次提交
  2. 28 10月, 2015 1 次提交
  3. 21 10月, 2015 1 次提交
  4. 19 10月, 2015 1 次提交
    • R
      Input: sur40 - add dependency on VIDEO_V4L2 · c8a1978e
      Randy Dunlap 提交于
      Fix build errors due to missing Kconfig dependency.
      
      drivers/built-in.o: In function `sur40_disconnect':
      sur40.c:(.text+0x22be6e): undefined reference to `video_unregister_device'
      sur40.c:(.text+0x22be77): undefined reference to `v4l2_device_unregister'
      drivers/built-in.o: In function `sur40_process_video':
      sur40.c:(.text+0x22c1d4): undefined reference to `v4l2_get_timestamp'
      drivers/built-in.o: In function `sur40_probe':
      sur40.c:(.text+0x22ca82): undefined reference to `v4l2_device_register'
      sur40.c:(.text+0x22cb1a): undefined reference to `v4l2_device_unregister'
      sur40.c:(.text+0x22cbf7): undefined reference to `video_device_release_empty'
      sur40.c:(.text+0x22cc53): undefined reference to `__video_register_device'
      sur40.c:(.text+0x22cc90): undefined reference to `video_unregister_device'
      drivers/built-in.o: In function `sur40_vidioc_querycap':
      sur40.c:(.text+0x22ccb0): undefined reference to `video_devdata'
      Signed-off-by: NRandy Dunlap <rdunlap@infradead.org>
      Signed-off-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
      c8a1978e
  5. 18 10月, 2015 1 次提交
    • V
      Input: lpc32xx_ts - fix warnings caused by enabling unprepared clock · 32470060
      Vladimir Zapolskiy 提交于
      If common clock framework is configured, the driver generates a warning,
      which is fixed by this change:
      
          root@devkit3250:~# cat /dev/input/touchscreen0
          ------------[ cut here ]------------
          WARNING: CPU: 0 PID: 720 at drivers/clk/clk.c:727 clk_core_enable+0x2c/0xa4()
          Modules linked in: sc16is7xx snd_soc_uda1380
          CPU: 0 PID: 720 Comm: cat Not tainted 4.3.0-rc2+ #199
          Hardware name: LPC32XX SoC (Flattened Device Tree)
          Backtrace:
          [<>] (dump_backtrace) from [<>] (show_stack+0x18/0x1c)
          [<>] (show_stack) from [<>] (dump_stack+0x20/0x28)
          [<>] (dump_stack) from [<>] (warn_slowpath_common+0x90/0xb8)
          [<>] (warn_slowpath_common) from [<>] (warn_slowpath_null+0x24/0x2c)
          [<>] (warn_slowpath_null) from [<>] (clk_core_enable+0x2c/0xa4)
          [<>] (clk_core_enable) from [<>] (clk_enable+0x24/0x38)
          [<>] (clk_enable) from [<>] (lpc32xx_setup_tsc+0x18/0xa0)
          [<>] (lpc32xx_setup_tsc) from [<>] (lpc32xx_ts_open+0x14/0x1c)
          [<>] (lpc32xx_ts_open) from [<>] (input_open_device+0x74/0xb0)
          [<>] (input_open_device) from [<>] (evdev_open+0x110/0x16c)
          [<>] (evdev_open) from [<>] (chrdev_open+0x1b4/0x1dc)
          [<>] (chrdev_open) from [<>] (do_dentry_open+0x1dc/0x2f4)
          [<>] (do_dentry_open) from [<>] (vfs_open+0x6c/0x70)
          [<>] (vfs_open) from [<>] (path_openat+0xb4c/0xddc)
          [<>] (path_openat) from [<>] (do_filp_open+0x40/0x8c)
          [<>] (do_filp_open) from [<>] (do_sys_open+0x124/0x1c4)
          [<>] (do_sys_open) from [<>] (SyS_open+0x2c/0x30)
          [<>] (SyS_open) from [<>] (ret_fast_syscall+0x0/0x38)
      Signed-off-by: NVladimir Zapolskiy <vz@mleia.com>
      Signed-off-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
      32470060
  6. 17 10月, 2015 4 次提交
  7. 14 10月, 2015 1 次提交
  8. 11 10月, 2015 1 次提交
  9. 07 10月, 2015 3 次提交
  10. 06 10月, 2015 1 次提交
  11. 03 10月, 2015 6 次提交
  12. 01 10月, 2015 1 次提交
  13. 28 9月, 2015 5 次提交
  14. 20 9月, 2015 5 次提交
  15. 06 9月, 2015 2 次提交
  16. 04 9月, 2015 2 次提交
  17. 25 8月, 2015 1 次提交
  18. 22 8月, 2015 1 次提交
    • L
      ALSA: ac97: Switch to dev_pm_ops · 9bc07dfb
      Lars-Peter Clausen 提交于
      Convert the ac97_bus from legacy suspend/resume callbacks to dev_pm_ops.
      
      Since there isn't anything special to do at the bus level the bus driver
      does not have to implement any callbacks. The device driver core will
      automatically pick up and execute the device's PM ops.
      
      As there is only a single AC'97 driver implementing suspend and resume,
      update both the core and driver at the same time to avoid unnecessary code
      churn.
      
      While we are at it also drop the ifdefs around the suspend/resume functions
      to increase compile test coverage.
      Signed-off-by: NLars-Peter Clausen <lars@metafoo.de>
      Acked-by: NDmitry Torokhov <dmitry.torokhov@gmail.com>
      Signed-off-by: NTakashi Iwai <tiwai@suse.de>
      9bc07dfb