mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-01-17 12:00:35 +00:00
Add a driver for the Skyworks Si3474 I2C Power Sourcing Equipment controller. Driver supports basic features of Si3474 IC: - get port status, - get port power, - get port voltage, - enable/disable port power. Only 4p configurations are supported at this moment. Signed-off-by: Piotr Kubik <piotr.kubik@adtran.com> Reviewed-by: Kory Maincent <kory.maincent@bootlin.com> Link: https://patch.msgid.link/9b72c8cd-c8d3-4053-9c80-671b9481d166@adtran.com Signed-off-by: Paolo Abeni <pabeni@redhat.com>
10 lines
282 B
Makefile
10 lines
282 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Makefile for Linux PSE drivers
|
|
|
|
obj-$(CONFIG_PSE_CONTROLLER) += pse_core.o
|
|
|
|
obj-$(CONFIG_PSE_REGULATOR) += pse_regulator.o
|
|
obj-$(CONFIG_PSE_PD692X0) += pd692x0.o
|
|
obj-$(CONFIG_PSE_SI3474) += si3474.o
|
|
obj-$(CONFIG_PSE_TPS23881) += tps23881.o
|