mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 19:53:59 +08:00
Merge branch 'remotes/lorenzo/pci/loongson'
* remotes/lorenzo/pci/loongson: PCI: loongson: Simplify loongson_pci_probe() return expression
This commit is contained in:
commit
1f287b5ce5
@ -183,7 +183,6 @@ static int loongson_pci_probe(struct platform_device *pdev)
|
|||||||
struct device_node *node = dev->of_node;
|
struct device_node *node = dev->of_node;
|
||||||
struct pci_host_bridge *bridge;
|
struct pci_host_bridge *bridge;
|
||||||
struct resource *regs;
|
struct resource *regs;
|
||||||
int err;
|
|
||||||
|
|
||||||
if (!node)
|
if (!node)
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
@ -222,11 +221,7 @@ static int loongson_pci_probe(struct platform_device *pdev)
|
|||||||
bridge->ops = &loongson_pci_ops;
|
bridge->ops = &loongson_pci_ops;
|
||||||
bridge->map_irq = loongson_map_irq;
|
bridge->map_irq = loongson_map_irq;
|
||||||
|
|
||||||
err = pci_host_probe(bridge);
|
return pci_host_probe(bridge);
|
||||||
if (err)
|
|
||||||
return err;
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct platform_driver loongson_pci_driver = {
|
static struct platform_driver loongson_pci_driver = {
|
||||||
|
Loading…
Reference in New Issue
Block a user