1. 05 4月, 2014 1 次提交
  2. 19 2月, 2014 1 次提交
  3. 14 2月, 2014 1 次提交
  4. 07 2月, 2014 1 次提交
  5. 03 2月, 2014 3 次提交
  6. 30 1月, 2014 3 次提交
  7. 15 1月, 2014 9 次提交
  8. 12 12月, 2013 5 次提交
  9. 07 12月, 2013 1 次提交
    • L
      ACPI: Clean up inclusions of ACPI header files · 8b48463f
      Lv Zheng 提交于
      Replace direct inclusions of <acpi/acpi.h>, <acpi/acpi_bus.h> and
      <acpi/acpi_drivers.h>, which are incorrect, with <linux/acpi.h>
      inclusions and remove some inclusions of those files that aren't
      necessary.
      
      First of all, <acpi/acpi.h>, <acpi/acpi_bus.h> and <acpi/acpi_drivers.h>
      should not be included directly from any files that are built for
      CONFIG_ACPI unset, because that generally leads to build warnings about
      undefined symbols in !CONFIG_ACPI builds.  For CONFIG_ACPI set,
      <linux/acpi.h> includes those files and for CONFIG_ACPI unset it
      provides stub ACPI symbols to be used in that case.
      
      Second, there are ordering dependencies between those files that always
      have to be met.  Namely, it is required that <acpi/acpi_bus.h> be included
      prior to <acpi/acpi_drivers.h> so that the acpi_pci_root declarations the
      latter depends on are always there.  And <acpi/acpi.h> which provides
      basic ACPICA type declarations should always be included prior to any other
      ACPI headers in CONFIG_ACPI builds.  That also is taken care of including
      <linux/acpi.h> as appropriate.
      Signed-off-by: NLv Zheng <lv.zheng@intel.com>
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Matthew Garrett <mjg59@srcf.ucam.org>
      Cc: Tony Luck <tony.luck@intel.com>
      Cc: "H. Peter Anvin" <hpa@zytor.com>
      Acked-by: Bjorn Helgaas <bhelgaas@google.com> (drivers/pci stuff)
      Acked-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> (Xen stuff)
      Signed-off-by: NRafael J. Wysocki <rafael.j.wysocki@intel.com>
      8b48463f
  10. 04 12月, 2013 2 次提交
    • E
      hwmon: tmp102: expose to thermal fw via DT nodes · 6a027523
      Eduardo Valentin 提交于
      This patch adds to tmp102 temperature sensor the possibility
      to expose itself as thermal zone device, registered on the
      thermal framework.
      
      The thermal zone is built only if a device tree node
      describing a thermal zone for this sensor is present
      inside the tmp102 DT node. Otherwise, the driver behavior
      will be the same.
      
      Note: This patch has also been reviewed by Jean D. He has
      requested to perform a wider inspection of possible
      users of thermal and hwmon interaction API. On the other
      hand, the change on this patch is acceptable on first
      step of overall code change.
      
      Cc: Jean Delvare <khali@linux-fr.org>
      Cc: lm-sensors@lm-sensors.org
      Cc: linux-kernel@vger.kernel.org
      Acked-by: NGuenter Roeck <linux@roeck-us.net>
      Signed-off-by: NEduardo Valentin <eduardo.valentin@ti.com>
      6a027523
    • E
      hwmon: lm75: expose to thermal fw via DT nodes · 22e73183
      Eduardo Valentin 提交于
      This patch adds to lm75 temperature sensor the possibility
      to expose itself as thermal zone device, registered on the
      thermal framework.
      
      The thermal zone is built only if a device tree node
      describing a thermal zone for this sensor is present
      inside the lm75 DT node. Otherwise, the driver behavior
      will be the same.
      
      Note: This patch has also been reviewed by Jean D. He has
      requested to perform a wider inspection of possible
      users of thermal and hwmon interaction API. On the other
      hand, the change on this patch is acceptable on first
      step of overall code change.
      
      Cc: Jean Delvare <khali@linux-fr.org>
      Cc: lm-sensors@lm-sensors.org
      Cc: linux-kernel@vger.kernel.org
      Acked-by: NGuenter Roeck <linux@roeck-us.net>
      Signed-off-by: NEduardo Valentin <eduardo.valentin@ti.com>
      22e73183
  11. 26 11月, 2013 1 次提交
    • L
      ACPI: Clean up incorrect inclusions of ACPICA headers · 91be0998
      Lv Zheng 提交于
      Header file <acpi/acpi.h> contains environemnt settings and architecture
      specific implementation that should be included before any other ACPICA
      headers in order to keep a consistent build environment for ACPICA users.
      The following internal ACPICA header files should be included from
      <acpi/acpi.h> and should not be included by other kernel files:
        <acpi/acpiosxf.h>
        <acpi/acpixf.h>
      
      Clean up incorrect inclusions of these files from non-ACPICA source
      files.
      
      [rjw: Subject and changelog]
      Signed-off-by: NLv Zheng <lv.zheng@intel.com>
      Signed-off-by: NRafael J. Wysocki <rafael.j.wysocki@intel.com>
      91be0998
  12. 21 11月, 2013 1 次提交
  13. 19 11月, 2013 3 次提交
  14. 15 11月, 2013 7 次提交
  15. 20 10月, 2013 1 次提交