diff options
| -rw-r--r-- | drivers/pci/bus.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/pci/bus.c b/drivers/pci/bus.c index ef5a6a245f5f..6a9403d79e0c 100644 --- a/drivers/pci/bus.c +++ b/drivers/pci/bus.c | |||
| @@ -145,13 +145,15 @@ void pci_bus_add_devices(struct pci_bus *bus) | |||
| 145 | child_bus = dev->subordinate; | 145 | child_bus = dev->subordinate; |
| 146 | child_bus->dev.parent = child_bus->bridge; | 146 | child_bus->dev.parent = child_bus->bridge; |
| 147 | retval = device_register(&child_bus->dev); | 147 | retval = device_register(&child_bus->dev); |
| 148 | if (!retval) | 148 | if (retval) |
| 149 | dev_err(&dev->dev, "Error registering pci_bus," | ||
| 150 | " continuing...\n"); | ||
| 151 | else | ||
| 149 | retval = device_create_file(&child_bus->dev, | 152 | retval = device_create_file(&child_bus->dev, |
| 150 | &dev_attr_cpuaffinity); | 153 | &dev_attr_cpuaffinity); |
| 151 | if (retval) | 154 | if (retval) |
| 152 | dev_err(&dev->dev, "Error registering pci_bus" | 155 | dev_err(&dev->dev, "Error creating cpuaffinity" |
| 153 | " device bridge symlink," | 156 | " file, continuing...\n"); |
| 154 | " continuing...\n"); | ||
| 155 | } | 157 | } |
| 156 | } | 158 | } |
| 157 | } | 159 | } |
