| .. | .. |
|---|
| 23 | 23 | |
|---|
| 24 | 24 | entry = resource_list_create_entry(res, 0); |
|---|
| 25 | 25 | if (!entry) { |
|---|
| 26 | | - printk(KERN_ERR "PCI: can't add host bridge window %pR\n", res); |
|---|
| 26 | + pr_err("PCI: can't add host bridge window %pR\n", res); |
|---|
| 27 | 27 | return; |
|---|
| 28 | 28 | } |
|---|
| 29 | 29 | |
|---|
| .. | .. |
|---|
| 288 | 288 | res->end = end; |
|---|
| 289 | 289 | res->flags &= ~IORESOURCE_UNSET; |
|---|
| 290 | 290 | orig_res.flags &= ~IORESOURCE_UNSET; |
|---|
| 291 | | - pci_printk(KERN_DEBUG, dev, "%pR clipped to %pR\n", |
|---|
| 292 | | - &orig_res, res); |
|---|
| 291 | + pci_info(dev, "%pR clipped to %pR\n", &orig_res, res); |
|---|
| 293 | 292 | |
|---|
| 294 | 293 | return true; |
|---|
| 295 | 294 | } |
|---|
| .. | .. |
|---|
| 414 | 413 | get_device(&bus->dev); |
|---|
| 415 | 414 | return bus; |
|---|
| 416 | 415 | } |
|---|
| 417 | | -EXPORT_SYMBOL(pci_bus_get); |
|---|
| 418 | 416 | |
|---|
| 419 | 417 | void pci_bus_put(struct pci_bus *bus) |
|---|
| 420 | 418 | { |
|---|
| 421 | 419 | if (bus) |
|---|
| 422 | 420 | put_device(&bus->dev); |
|---|
| 423 | 421 | } |
|---|
| 424 | | -EXPORT_SYMBOL(pci_bus_put); |
|---|