Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'pci/controller/generic'

- Reword 'reg' property error message to account for both missing and
malformed properties (Jess)

* pci/controller/generic:
PCI: host-generic: Avoid reporting incorrect 'missing reg property' error

+1 -1
+1 -1
drivers/pci/controller/pci-host-common.c
··· 32 32 33 33 err = of_address_to_resource(dev->of_node, 0, &cfgres); 34 34 if (err) { 35 - dev_err(dev, "missing \"reg\" property\n"); 35 + dev_err(dev, "missing or malformed \"reg\" property\n"); 36 36 return ERR_PTR(err); 37 37 } 38 38