brintos

brintos / linux-shallow public Read only

0
0
Text · 570 B · 999654a Raw
25 lines · c
1/* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB2 * Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved3 */4#ifndef __MLX5_HWMON_H__5#define __MLX5_HWMON_H__6 7#include <linux/mlx5/driver.h>8 9#if IS_ENABLED(CONFIG_HWMON)10 11int mlx5_hwmon_dev_register(struct mlx5_core_dev *mdev);12void mlx5_hwmon_dev_unregister(struct mlx5_core_dev *mdev);13 14#else15static inline int mlx5_hwmon_dev_register(struct mlx5_core_dev *mdev)16{17	return 0;18}19 20static inline void mlx5_hwmon_dev_unregister(struct mlx5_core_dev *mdev) {}21 22#endif23 24#endif /* __MLX5_HWMON_H__ */25