Re: [PATCH -next 2/2] PCI: switch to use dev_err_probe()

From: Christophe JAILLET
Date: Wed Aug 17 2022 - 05:11:18 EST


Le 17/08/2022 à 10:44, Yang Yingliang a écrit :
Use dev_err_probe() to simplify code and print error code.

Signed-off-by: Yang Yingliang <yangyingliang@xxxxxxxxxx>
---
drivers/pci/probe.c | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c
index 0e947f24153e..f2430da8a30b 100644
--- a/drivers/pci/probe.c
+++ b/drivers/pci/probe.c
@@ -3054,10 +3054,9 @@ int pci_host_probe(struct pci_host_bridge *bridge)
int ret;
ret = pci_scan_root_bus_bridge(bridge);
- if (ret < 0) {
- dev_err(bridge->dev.parent, "Scanning root bridge failed");
- return ret;
- }
+ if (ret < 0)
+ return dev_err_probe(bridge->dev.parent, ret,
+ "Scanning root bridge failed");
bus = bridge->bus;

Nit: you could also add a \n at the end of the message.

Just my 2c,

CJ