diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-14 14:35:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-14 15:41:52 -0400 |
commit | b4482a4b2e2ff5ed96d8d16d72e83e75064062c5 (patch) | |
tree | 675b5f0a80d720c63db138d5395d63cee6c74969 /drivers/pci/pci.c | |
parent | 64a6f9500d8e8a8e1b1adc2120e56cc88df5727f (diff) |
more trivial signedness fixes in drivers
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/pci/pci.c')
-rw-r--r-- | 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 728b3c863d87..71d561fda0a2 100644 --- a/drivers/pci/pci.c +++ b/drivers/pci/pci.c | |||
@@ -658,7 +658,7 @@ int | |||
658 | pci_restore_state(struct pci_dev *dev) | 658 | pci_restore_state(struct pci_dev *dev) |
659 | { | 659 | { |
660 | int i; | 660 | int i; |
661 | int val; | 661 | u32 val; |
662 | 662 | ||
663 | /* PCI Express register must be restored first */ | 663 | /* PCI Express register must be restored first */ |
664 | pci_restore_pcie_state(dev); | 664 | pci_restore_pcie_state(dev); |