12345678910111213141516171819202122232425262728293031323334 |
- #ifndef _THERMAL_H_
- #define _THERMAL_H_
- #include <dm.h>
- int thermal_get_temp(struct udevice *dev, int *temp);
- struct dm_thermal_ops {
-
- int (*get_temp)(struct udevice *dev, int *temp);
- };
- #endif
|