diff mbox series

PCI: endpoint: Remove some unused fields in struct pci_epf_group

Message ID 6507d44b6c60a19af35a605e2d58050be8872ab6.1712341008.git.christophe.jaillet@wanadoo.fr
State New
Headers show
Series PCI: endpoint: Remove some unused fields in struct pci_epf_group | expand

Commit Message

Christophe JAILLET April 5, 2024, 6:16 p.m. UTC
In "struct pci_epf_group", the 'type_group' field is unused.

This was added, but already unused, by commit 70b3740f2c19 ("PCI: endpoint:
Automatically create a function specific attributes group")

Remove it.

Found with cppcheck, unusedStructMember.

Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
---
Compile tested only.
---
 drivers/pci/endpoint/pci-ep-cfs.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Krzysztof Wilczy��ski May 17, 2024, 11:08 a.m. UTC | #1
Hello,

> In "struct pci_epf_group", the 'type_group' field is unused.
> 
> This was added, but already unused, by commit 70b3740f2c19 ("PCI: endpoint:
> Automatically create a function specific attributes group")
> 
> Remove it.
> 
> Found with cppcheck, unusedStructMember.

Applied to endpoint, thank you!

[1/1] PCI: endpoint: Remove unused field in struct pci_epf_group
      https://git.kernel.org/pci/pci/c/ddc66cc4e695

	Krzysztof
diff mbox series

Patch

diff --git a/drivers/pci/endpoint/pci-ep-cfs.c b/drivers/pci/endpoint/pci-ep-cfs.c
index 0ea64e24ed61..ad4e2e329ae9 100644
--- a/drivers/pci/endpoint/pci-ep-cfs.c
+++ b/drivers/pci/endpoint/pci-ep-cfs.c
@@ -23,7 +23,6 @@  struct pci_epf_group {
 	struct config_group group;
 	struct config_group primary_epc_group;
 	struct config_group secondary_epc_group;
-	struct config_group *type_group;
 	struct delayed_work cfs_work;
 	struct pci_epf *epf;
 	int index;