blob: a4ea1e291453ac81dcf4a205537b074b131f0497 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ye.Lie3568d22014-11-20 21:14:13 +08002/*
3 * (C) Copyright 2014 Freescale Semiconductor, Inc
Ye.Lie3568d22014-11-20 21:14:13 +08004 */
5
6#include <common.h>
7#include <dm.h>
8#include <thermal.h>
9#include <errno.h>
10#include <fdtdec.h>
11#include <malloc.h>
12#include <asm/io.h>
13#include <linux/list.h>
14
15
16int thermal_get_temp(struct udevice *dev, int *temp)
17{
18 const struct dm_thermal_ops *ops = device_get_ops(dev);
19
20 if (!ops->get_temp)
21 return -ENOSYS;
22
23 return ops->get_temp(dev, temp);
24}
25
26UCLASS_DRIVER(thermal) = {
27 .id = UCLASS_THERMAL,
28 .name = "thermal",
29};