Unverified Commit b88cbaaa authored by Bjorn Helgaas's avatar Bjorn Helgaas Committed by Krzysztof Wilczyński
Browse files

PCI/pwrctrl: Rename pwrctl files to pwrctrl

To slightly reduce confusion between "pwrctl" (the power controller and
power sequencing framework) and "bwctrl" (the bandwidth controller),
rename "pwrctl" to "pwrctrl" so they use the same "ctrl" suffix.

Rename drivers/pci/pwrctl/ to drivers/pci/pwrctrl/, including the related
MAINTAINERS, include file (include/linux/pci-pwrctl.h), Makefile, and
Kconfig changes.

This is the minimal rename of files only.  A subsequent commit will rename
functions and data structures.

Link: https://lore.kernel.org/r/20241115214428.2061153-2-helgaas@kernel.org


Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
Signed-off-by: default avatarKrzysztof Wilczyński <kwilczynski@kernel.org>
Acked-by: default avatarKrzysztof Wilczyński <kw@linux.com>
parent 681725af
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -17910,8 +17910,8 @@ M: Bartosz Golaszewski <brgl@bgdev.pl>
L:	linux-pci@vger.kernel.org
S:	Maintained
T:	git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
F:	drivers/pci/pwrctl/*
F:	include/linux/pci-pwrctl.h
F:	drivers/pci/pwrctrl/*
F:	include/linux/pci-pwrctrl.h
PCI SUBSYSTEM
M:	Bjorn Helgaas <bhelgaas@google.com>
+1 −1
Original line number Diff line number Diff line
@@ -305,6 +305,6 @@ source "drivers/pci/hotplug/Kconfig"
source "drivers/pci/controller/Kconfig"
source "drivers/pci/endpoint/Kconfig"
source "drivers/pci/switch/Kconfig"
source "drivers/pci/pwrctl/Kconfig"
source "drivers/pci/pwrctrl/Kconfig"

endif
+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ obj-$(CONFIG_PCI) += access.o bus.o probe.o host-bridge.o \

obj-$(CONFIG_PCI)		+= msi/
obj-$(CONFIG_PCI)		+= pcie/
obj-$(CONFIG_PCI)		+= pwrctl/
obj-$(CONFIG_PCI)		+= pwrctrl/

ifdef CONFIG_PCI
obj-$(CONFIG_PROC_FS)		+= proc.o

drivers/pci/pwrctl/Makefile

deleted100644 → 0
+0 −6
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only

obj-$(CONFIG_PCI_PWRCTL)		+= pci-pwrctl-core.o
pci-pwrctl-core-y			:= core.o

obj-$(CONFIG_PCI_PWRCTL_PWRSEQ)		+= pci-pwrctl-pwrseq.o
Loading