Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f34303de9e0263b389a215483adddc7d918cf8c8
Commit:     f34303de9e0263b389a215483adddc7d918cf8c8
Parent:     9ed885541bc57a0810798ec1607a23a24a0e1b93
Author:     Shaohua Li <[EMAIL PROTECTED]>
AuthorDate: Tue Dec 18 09:56:47 2007 +0800
Committer:  Greg Kroah-Hartman <[EMAIL PROTECTED]>
CommitDate: Fri Feb 1 15:04:27 2008 -0800

    PCI: fix typo in pci_save_pcix_state
    
    pci_save/store_state has multiple bugs, which will cause cap can't be
    saved/restored correctly. Below 3 patches fix them.
    
    
    fix the typo in pci_save_pcix_state
    
    Signed-off-by: Shaohua Li <[EMAIL PROTECTED]>
    Signed-off-by: Greg Kroah-Hartman <[EMAIL PROTECTED]>
---
 drivers/pci/pci.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index d30e802..b01ed9a 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -620,7 +620,7 @@ static int pci_save_pcix_state(struct pci_dev *dev)
        if (pos <= 0)
                return 0;
 
-       save_state = pci_find_saved_cap(dev, PCI_CAP_ID_EXP);
+       save_state = pci_find_saved_cap(dev, PCI_CAP_ID_PCIX);
        if (!save_state)
                save_state = kzalloc(sizeof(*save_state) + sizeof(u16), 
GFP_KERNEL);
        if (!save_state) {
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to