mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-29 23:53:32 +00:00
6a92c36688
ST's SPEAr13xx machines are based on CortexA9 ARM processors. These machines contain a thermal sensor for junction temperature monitoring. This patch adds support for this thermal sensor in existing thermal framework. [akpm@linux-foundation.org: little code cleanup] [akpm@linux-foundation.org: print the pointer correctly] [viresh.kumar@st.com: thermal/spear_thermal: add compilation dependency on PLAT_SPEAR] Signed-off-by: Vincenzo Frascino <vincenzo.frascino@st.com> Signed-off-by: Viresh Kumar <viresh.kumar@st.com> Signed-off-by: Viresh Kumar <viresh.kumar@st.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Len Brown <len.brown@intel.com>
26 lines
837 B
C
26 lines
837 B
C
/*
|
|
* SPEAr thermal driver platform data.
|
|
*
|
|
* Copyright (C) 2011-2012 ST Microelectronics
|
|
* Author: Vincenzo Frascino <vincenzo.frascino@st.com>
|
|
*
|
|
* This software is licensed under the terms of the GNU General Public
|
|
* License version 2, as published by the Free Software Foundation, and
|
|
* may be copied, distributed, and modified under those terms.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
*/
|
|
#ifndef SPEAR_THERMAL_H
|
|
#define SPEAR_THERMAL_H
|
|
|
|
/* SPEAr Thermal Sensor Platform Data */
|
|
struct spear_thermal_pdata {
|
|
/* flags used to enable thermal sensor */
|
|
unsigned int thermal_flags;
|
|
};
|
|
|
|
#endif /* SPEAR_THERMAL_H */
|