summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/xe/xe_hwmon.h
blob: c42a1de2cd7a289ad408b3647c4f9b27e46ae6e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: MIT */
/*
 * Copyright © 2023 Intel Corporation
 */

#ifndef _XE_HWMON_H_
#define _XE_HWMON_H_

#include <linux/types.h>

struct xe_device;

#if IS_REACHABLE(CONFIG_HWMON)
void xe_hwmon_register(struct xe_device *xe);
#else
static inline void xe_hwmon_register(struct xe_device *xe) { };
#endif

#endif /* _XE_HWMON_H_ */