diff options
author | Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com> | 2009-08-05 22:32:04 -0400 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2009-09-09 16:29:30 -0400 |
commit | 9cc8d54815bd5b7c4b516e6be92f036bbcdd8bad (patch) | |
tree | b22204c29f6654aa88c3517e2b46c2571cf36c0c /drivers/pci | |
parent | c901851fddb82529ddcd443d0778b1dee1386a14 (diff) |
PCI MSI: Use list_first_entry()
use list_first_entry() instead of list_entry().
Reviewed-by: Matthew Wilcox <willy@linux.intel.com>
Signed-off-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci')
-rw-r--r-- | drivers/pci/msi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c index a7b72f633d07..bdd2ca9df41f 100644 --- a/drivers/pci/msi.c +++ b/drivers/pci/msi.c | |||
@@ -324,7 +324,7 @@ static void __pci_restore_msix_state(struct pci_dev *dev) | |||
324 | if (!dev->msix_enabled) | 324 | if (!dev->msix_enabled) |
325 | return; | 325 | return; |
326 | BUG_ON(list_empty(&dev->msi_list)); | 326 | BUG_ON(list_empty(&dev->msi_list)); |
327 | entry = list_entry(dev->msi_list.next, struct msi_desc, list); | 327 | entry = list_first_entry(&dev->msi_list, struct msi_desc, list); |
328 | pos = entry->msi_attrib.pos; | 328 | pos = entry->msi_attrib.pos; |
329 | pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control); | 329 | pci_read_config_word(dev, pos + PCI_MSIX_FLAGS, &control); |
330 | 330 | ||