diff options
| author | Linus Torvalds <[email protected]> | 2020-08-06 18:10:55 -0700 | 
|---|---|---|
| committer | Linus Torvalds <[email protected]> | 2020-08-06 18:10:55 -0700 | 
| commit | 96e3f3c16b7aedcd71502ccfc5778dddfc2e7b15 (patch) | |
| tree | 26ca6eb47ec408e69e7225f41f784c58ec660c95 /include/linux/devfreq_cooling.h | |
| parent | ed35832648b5c22ce39fe9c476065389c6f330ef (diff) | |
| parent | c569e805c7bcebdd069e5c97ce5f8543f6d02433 (diff) | |
Merge tag 'thermal-v5.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux
Pull thermal updates from Daniel Lezcano:
 - Add support to enable/disable the thermal zones resulting on core
   code and drivers cleanup (Andrzej Pietrasiewicz)
 - Add generic netlink support for userspace notifications: events,
   temperature and discovery commands (Daniel Lezcano)
 - Fix redundant initialization for a ret variable (Colin Ian King)
 - Remove the clock cooling code as it is used nowhere (Amit Kucheria)
 - Add the rcar_gen3_thermal's r8a774e1 support (Marian-Cristian
   Rotariu)
 - Replace all references to thermal.txt in the documentation to the
   corresponding yaml files (Amit Kucheria)
 - Add maintainer entry for the IPA (Lukasz Luba)
 - Add support for MSM8939 for the tsens (Shawn Guo)
 - Update power allocator and devfreq cooling to SPDX licensing (Lukasz
   Luba)
 - Add Cannon Lake Low Power PCH support (Sumeet Pawnikar)
 - Add tsensor support for V2 mediatek thermal system (Henry Yen)
 - Fix thermal zone lookup by ID for the core code (Thierry Reding)
* tag 'thermal-v5.9-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux: (40 commits)
  thermal: intel: intel_pch_thermal: Add Cannon Lake Low Power PCH support
  thermal: mediatek: Add tsensor support for V2 thermal system
  thermal: mediatek: Prepare to add support for other platforms
  thermal: Update power allocator and devfreq cooling to SPDX licensing
  MAINTAINERS: update entry to thermal governors file name prefixing
  thermal: core: Add thermal zone enable/disable notification
  thermal: qcom: tsens-v0_1: Add support for MSM8939
  dt-bindings: tsens: qcom: Document MSM8939 compatible
  thermal: core: Fix thermal zone lookup by ID
  thermal: int340x: processor_thermal: fix: update Jasper Lake PCI id
  thermal: imx8mm: Support module autoloading
  thermal: ti-soc-thermal: Fix reversed condition in ti_thermal_expose_sensor()
  MAINTAINERS: Add maintenance information for IPA
  thermal: rcar_gen3_thermal: Do not shadow thcode variable
  dt-bindings: thermal: Get rid of thermal.txt and replace references
  thermal: core: Move initialization after core initcall
  thermal: netlink: Improve the initcall ordering
  net: genetlink: Move initialization to core_initcall
  thermal: rcar_gen3_thermal: Add r8a774e1 support
  thermal/drivers/clock_cooling: Remove clock_cooling code
  ...
Diffstat (limited to 'include/linux/devfreq_cooling.h')
| -rw-r--r-- | include/linux/devfreq_cooling.h | 9 | 
1 files changed, 1 insertions, 8 deletions
diff --git a/include/linux/devfreq_cooling.h b/include/linux/devfreq_cooling.h index 79a6e37a1d6f..9df2dfca68dd 100644 --- a/include/linux/devfreq_cooling.h +++ b/include/linux/devfreq_cooling.h @@ -1,17 +1,10 @@ +/* SPDX-License-Identifier: GPL-2.0 */  /*   * devfreq_cooling: Thermal cooling device implementation for devices using   *                  devfreq   *   * Copyright (C) 2014-2015 ARM Limited   * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License version 2 as - * published by the Free Software Foundation. - * - * This program is distributed "as is" WITHOUT ANY WARRANTY of any - * kind, whether express or implied; without even the implied warranty - * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the - * GNU General Public License for more details.   */  #ifndef __DEVFREQ_COOLING_H__  |