diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-14 20:35:40 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-14 21:41:52 +0200 |
commit | b4482a4b2e2ff5ed96d8d16d72e83e75064062c5 (patch) | |
tree | 675b5f0a80d720c63db138d5395d63cee6c74969 /drivers/pci/pci.c | |
parent | signedness: module_param_array nump argument (diff) | |
download | linux-b4482a4b2e2ff5ed96d8d16d72e83e75064062c5.tar.xz linux-b4482a4b2e2ff5ed96d8d16d72e83e75064062c5.zip |
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 pci_restore_state(struct pci_dev *dev) { int i; - int val; + u32 val; /* PCI Express register must be restored first */ pci_restore_pcie_state(dev); |