diff mbox series

net: aquantia: fix undefined devm_hwmon_device_register_with_info reference

Message ID 20190509153235.103441-1-wangkefeng.wang@huawei.com
State Accepted
Delegated to: David Miller
Headers show
Series net: aquantia: fix undefined devm_hwmon_device_register_with_info reference | expand

Commit Message

Kefeng Wang May 9, 2019, 3:32 p.m. UTC
drivers/net/ethernet/aquantia/atlantic/aq_drvinfo.o: In function `aq_drvinfo_init':
aq_drvinfo.c:(.text+0xe8): undefined reference to `devm_hwmon_device_register_with_info'

Fix it by using #if IS_REACHABLE(CONFIG_HWMON).

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>
---
 drivers/net/ethernet/aquantia/atlantic/aq_drvinfo.c | 5 +++++
 1 file changed, 5 insertions(+)

Comments

David Miller May 9, 2019, 4:50 p.m. UTC | #1
From: Kefeng Wang <wangkefeng.wang@huawei.com>
Date: Thu, 9 May 2019 23:32:35 +0800

> drivers/net/ethernet/aquantia/atlantic/aq_drvinfo.o: In function `aq_drvinfo_init':
> aq_drvinfo.c:(.text+0xe8): undefined reference to `devm_hwmon_device_register_with_info'
> 
> Fix it by using #if IS_REACHABLE(CONFIG_HWMON).
> 
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com>

Applied.

It's a shame there isn't a dummy inline of this helper defined when HWMON is unset.
diff mbox series

Patch

diff --git a/drivers/net/ethernet/aquantia/atlantic/aq_drvinfo.c b/drivers/net/ethernet/aquantia/atlantic/aq_drvinfo.c
index f5a92b2a5cd6..adad6a7acabe 100644
--- a/drivers/net/ethernet/aquantia/atlantic/aq_drvinfo.c
+++ b/drivers/net/ethernet/aquantia/atlantic/aq_drvinfo.c
@@ -13,6 +13,7 @@ 
 
 #include "aq_drvinfo.h"
 
+#if IS_REACHABLE(CONFIG_HWMON)
 static int aq_hwmon_read(struct device *dev, enum hwmon_sensor_types type,
 			 u32 attr, int channel, long *value)
 {
@@ -123,3 +124,7 @@  int aq_drvinfo_init(struct net_device *ndev)
 
 	return err;
 }
+
+#else
+int aq_drvinfo_init(struct net_device *ndev) { return 0; }
+#endif