summaryrefslogtreecommitdiff
path: root/drivers/net/ethernet/mellanox/mlx5/core/thermal.h
blob: 7d752c122192207ea5b07ad4ec3a8e5f9f029625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB
 * Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES.
 */
#ifndef __MLX5_THERMAL_DRIVER_H
#define __MLX5_THERMAL_DRIVER_H

#if IS_ENABLED(CONFIG_THERMAL)
int mlx5_thermal_init(struct mlx5_core_dev *mdev);
void mlx5_thermal_uninit(struct mlx5_core_dev *mdev);
#else
static inline int mlx5_thermal_init(struct mlx5_core_dev *mdev)
{
	mdev->thermal = NULL;
	return 0;
}

static inline void mlx5_thermal_uninit(struct mlx5_core_dev *mdev) { }
#endif

#endif /* __MLX5_THERMAL_DRIVER_H */