mirror of
https://github.com/torvalds/linux.git
synced 2026-04-30 12:32:31 -04:00
This patch adds support for hardware monitoring to the fbnic driver, allowing for temperature and voltage sensor data to be exposed to userspace via the HWMON interface. The driver registers a HWMON device and provides callbacks for reading sensor data, enabling system admins to monitor the health and operating conditions of fbnic. Signed-off-by: Sanman Pradhan <sanman.p211993@gmail.com> Reviewed-by: Michal Swiatkowski <michal.swiatkowski@linux.intel.com> Link: https://patch.msgid.link/20250114000705.2081288-4-sanman.p211993@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
26 lines
496 B
Makefile
26 lines
496 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
|
|
#
|
|
# Makefile for the Meta(R) Host Network Interface
|
|
#
|
|
|
|
obj-$(CONFIG_FBNIC) += fbnic.o
|
|
|
|
fbnic-y := fbnic_csr.o \
|
|
fbnic_debugfs.o \
|
|
fbnic_devlink.o \
|
|
fbnic_ethtool.o \
|
|
fbnic_fw.o \
|
|
fbnic_hw_stats.o \
|
|
fbnic_hwmon.o \
|
|
fbnic_irq.o \
|
|
fbnic_mac.o \
|
|
fbnic_netdev.o \
|
|
fbnic_pci.o \
|
|
fbnic_phylink.o \
|
|
fbnic_rpc.o \
|
|
fbnic_tlv.o \
|
|
fbnic_txrx.o \
|
|
fbnic_time.o
|