[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1297734200-23327-4-git-send-email-linuxram@us.ibm.com>
Date: Mon, 14 Feb 2011 17:43:19 -0800
From: Ram Pai <linuxram@...ibm.com>
To: linux-pci@...r.kernel.org, jbarnes@...tuousgeek.org
Cc: Ram Pai <linuxram@...ibm.com>, linux-kernel@...r.kernel.org,
clemens@...isch.de, Yinghai Lu <yinghai@...nel.org>,
Linus Torvalds <torvalds@...ux-foundation.org>,
Bjorn Helgaas <bjorn.helgaas@...com>
Subject: [PATCH 3/4] PCI: introduce reset_resource()
introduced reset_resource() which factors out resource reset logic.
Signed-off-by: Ram Pai <linuxram@...ibm.com>
---
drivers/pci/setup-bus.c | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/drivers/pci/setup-bus.c b/drivers/pci/setup-bus.c
index bcf5752..a94ecc1 100644
--- a/drivers/pci/setup-bus.c
+++ b/drivers/pci/setup-bus.c
@@ -88,6 +88,13 @@ static void __dev_sort_resources(struct pci_dev *dev,
pdev_sort_resources(dev, head);
}
+static inline void reset_resource(struct resource *res)
+{
+ res->start = 0;
+ res->end = 0;
+ res->flags = 0;
+}
+
static void __assign_resources_sorted(struct resource_list *head,
struct resource_list_x *fail_head)
{
@@ -109,9 +116,7 @@ static void __assign_resources_sorted(struct resource_list *head,
(!(res->flags & IORESOURCE_ROM_ENABLE))))
add_to_failed_list(fail_head, list->dev, res);
}
- res->start = 0;
- res->end = 0;
- res->flags = 0;
+ reset_resource(res);
}
tmp = list;
list = list->next;
--
1.6.5.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists