From: Manivannan Sadhasivam Date: Thu, 5 Mar 2026 07:12:34 +0000 (+0530) Subject: PCI: endpoint: Print the EPF name in the error log of pci_epf_make() X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff5387d4f0798cf1d1a4f548427bd9142cf35b66;p=thirdparty%2Fkernel%2Flinux.git PCI: endpoint: Print the EPF name in the error log of pci_epf_make() Merely printing the error log without the actual EPF name will not give much clue to the users about the failure. Hence, print the EPF name also. Suggested-by: Bjorn Helgaas Signed-off-by: Manivannan Sadhasivam Signed-off-by: Manivannan Sadhasivam Link: https://patch.msgid.link/20260305071236.23792-1-mani@kernel.org --- diff --git a/drivers/pci/endpoint/pci-ep-cfs.c b/drivers/pci/endpoint/pci-ep-cfs.c index 076d115db02b3..a19db22b7991e 100644 --- a/drivers/pci/endpoint/pci-ep-cfs.c +++ b/drivers/pci/endpoint/pci-ep-cfs.c @@ -625,7 +625,8 @@ static struct config_group *pci_epf_make(struct config_group *group, epf = pci_epf_create(epf_name); if (IS_ERR(epf)) { err = PTR_ERR(epf); - pr_err("failed to create endpoint function device: %d\n", err); + pr_err("failed to create endpoint function device (%s): %d\n", + epf_name, err); goto free_name; }