1. 04 12月, 2014 1 次提交
  2. 29 7月, 2014 1 次提交
  3. 13 5月, 2014 1 次提交
  4. 14 3月, 2014 1 次提交
  5. 17 2月, 2014 4 次提交
  6. 03 2月, 2014 1 次提交
  7. 30 1月, 2014 1 次提交
    • M
      HID: i2c-hid: add runtime PM support · 34f439e4
      Mika Westerberg 提交于
      This patch adds runtime PM support for the HID over I2C driver. When the
      i2c-hid device is first opened we power it on and on the last close we
      power it off. This is actually what the driver is already doing but in
      addition it allows subsystems, like ACPI power domain to power off the
      device during runtime PM suspend, which should save even more power.
      
      The implementation is not the most power efficient because it needs some
      interaction from the userspace (e.g close the device node whenever we are
      no more interested in getting events), nevertheless it allows us to save
      some power and works with devices that are not wake capable.
      Signed-off-by: NMika Westerberg <mika.westerberg@linux.intel.com>
      Reviewed-by: NBenjamin Tissoires <benjamin.tissoires@redhat.com>
      Signed-off-by: NJiri Kosina <jkosina@suse.cz>
      34f439e4
  8. 05 1月, 2014 1 次提交
  9. 26 11月, 2013 1 次提交
  10. 15 11月, 2013 1 次提交
    • R
      ACPI / driver core: Store an ACPI device pointer in struct acpi_dev_node · 7b199811
      Rafael J. Wysocki 提交于
      Modify struct acpi_dev_node to contain a pointer to struct acpi_device
      associated with the given device object (that is, its ACPI companion
      device) instead of an ACPI handle corresponding to it.  Introduce two
      new macros for manipulating that pointer in a CONFIG_ACPI-safe way,
      ACPI_COMPANION() and ACPI_COMPANION_SET(), and rework the
      ACPI_HANDLE() macro to take the above changes into account.
      Drop the ACPI_HANDLE_SET() macro entirely and rework its users to
      use ACPI_COMPANION_SET() instead.  For some of them who used to
      pass the result of acpi_get_child() directly to ACPI_HANDLE_SET()
      introduce a helper routine acpi_preset_companion() doing an
      equivalent thing.
      
      The main motivation for doing this is that there are things
      represented by struct acpi_device objects that don't have valid
      ACPI handles (so called fixed ACPI hardware features, such as
      power and sleep buttons) and we would like to create platform
      device objects for them and "glue" them to their ACPI companions
      in the usual way (which currently is impossible due to the
      lack of valid ACPI handles).  However, there are more reasons
      why it may be useful.
      
      First, struct acpi_device pointers allow of much better type checking
      than void pointers which are ACPI handles, so it should be more
      difficult to write buggy code using modified struct acpi_dev_node
      and the new macros.  Second, the change should help to reduce (over
      time) the number of places in which the result of ACPI_HANDLE() is
      passed to acpi_bus_get_device() in order to obtain a pointer to the
      struct acpi_device associated with the given "physical" device,
      because now that pointer is returned by ACPI_COMPANION() directly.
      Finally, the change should make it easier to write generic code that
      will build both for CONFIG_ACPI set and unset without adding explicit
      compiler directives to it.
      Signed-off-by: NRafael J. Wysocki <rafael.j.wysocki@intel.com>
      Acked-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      Tested-by: Mika Westerberg <mika.westerberg@linux.intel.com> # on Haswell
      Reviewed-by: NMika Westerberg <mika.westerberg@linux.intel.com>
      Reviewed-by: Aaron Lu <aaron.lu@intel.com> # for ATA and SDIO part
      7b199811
  11. 30 10月, 2013 1 次提交
  12. 24 9月, 2013 1 次提交
  13. 20 8月, 2013 1 次提交
  14. 05 8月, 2013 1 次提交
  15. 31 7月, 2013 2 次提交
  16. 04 7月, 2013 1 次提交
  17. 04 4月, 2013 1 次提交
  18. 25 2月, 2013 1 次提交
  19. 01 2月, 2013 1 次提交
  20. 18 1月, 2013 1 次提交
  21. 04 1月, 2013 1 次提交
    • G
      Drivers: misc: remove __dev* attributes. · 0fe763c5
      Greg Kroah-Hartman 提交于
      CONFIG_HOTPLUG is going away as an option.  As a result, the __dev*
      markings need to be removed.
      
      This change removes the use of __devinit, __devexit_p, __devinitdata,
      __devinitconst, and __devexit from these drivers.
      
      Based on patches originally written by Bill Pemberton, but redone by me
      in order to handle some of the coding style issues better, by hand.
      
      Cc: Bill Pemberton <wfp5p@virginia.edu>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      0fe763c5
  22. 13 12月, 2012 1 次提交
  23. 06 12月, 2012 5 次提交
  24. 05 12月, 2012 9 次提交