summaryrefslogtreecommitdiff
path: root/hwmon.h
blob: edcdb2fa890a2039309a0ebc0f4ff3ec425f1d6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Copyright (C) 2016  Bjørn Mork <bjorn@mork.no>
 */

#ifndef _MWL_HWMON_H_
#define _MWL_HWMON_H_

#if IS_ENABLED(CONFIG_HWMON)
int mwl_hwmon_register(struct ieee80211_hw *hw);
void mwl_hwmon_unregister(struct ieee80211_hw *hw);
#else
static inline int mwl_hwmon_register(struct ieee80211_hw *hw) { return 0; }
static inline void mwl_hwmon_unregister(struct ieee80211_hw *hw) {}
#endif

#endif /* _MWL_HWMON_H_ */