From: Bjorn Helgaas Date: Thu, 29 Dec 2016 17:27:52 +0000 (-0600) Subject: PCI: Remove res_to_dev_res() debug message X-Git-Tag: v4.11-rc1~92^2~20^2 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=25e77388e1ab63e11e21d94a994eca227472aeed;p=karo-tx-linux.git PCI: Remove res_to_dev_res() debug message Remove res_to_dev_res() debug message. This is printed from a lookup function. If the message is important, it should be printed from the caller with more context. Signed-off-by: Bjorn Helgaas Acked-by: Yinghai Lu --- diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c index f30ca75b5b6c..cb389277df41 100644 --- a/drivers/pci/setup-bus.c +++ b/drivers/pci/setup-bus.c @@ -105,17 +105,8 @@ static struct pci_dev_resource *res_to_dev_res(struct list_head *head, struct pci_dev_resource *dev_res; list_for_each_entry(dev_res, head, list) { - if (dev_res->res == res) { - int idx = res - &dev_res->dev->resource[0]; - - dev_printk(KERN_DEBUG, &dev_res->dev->dev, - "res[%d]=%pR res_to_dev_res add_size %llx min_align %llx\n", - idx, dev_res->res, - (unsigned long long)dev_res->add_size, - (unsigned long long)dev_res->min_align); - + if (dev_res->res == res) return dev_res; - } } return NULL;