mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-27 20:07:09 +00:00
thermal: ti-soc-thermal: add dra752 chip to device table
Add support to TI dra752 chips by adapting the driver device table. Cc: Zhang Rui <rui.zhang@intel.com> Cc: linux-pm@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by: Zhang Rui <rui.zhang@intel.com>
This commit is contained in:
parent
8926fa4f9b
commit
25870e6234
@ -1530,6 +1530,12 @@ static const struct of_device_id of_ti_bandgap_match[] = {
|
|||||||
.compatible = "ti,omap5430-bandgap",
|
.compatible = "ti,omap5430-bandgap",
|
||||||
.data = (void *)&omap5430_data,
|
.data = (void *)&omap5430_data,
|
||||||
},
|
},
|
||||||
|
#endif
|
||||||
|
#ifdef CONFIG_DRA752_THERMAL
|
||||||
|
{
|
||||||
|
.compatible = "ti,dra752-bandgap",
|
||||||
|
.data = (void *)&dra752_data,
|
||||||
|
},
|
||||||
#endif
|
#endif
|
||||||
/* Sentinel */
|
/* Sentinel */
|
||||||
{ },
|
{ },
|
||||||
|
@ -400,4 +400,9 @@ extern const struct ti_bandgap_data omap5430_data;
|
|||||||
#define omap5430_data NULL
|
#define omap5430_data NULL
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_DRA752_THERMAL
|
||||||
|
extern const struct ti_bandgap_data dra752_data;
|
||||||
|
#else
|
||||||
|
#define dra752_data NULL
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user