diff options
| author | David Rientjes <rientjes@google.com> | 2007-05-02 13:27:22 -0400 |
|---|---|---|
| committer | Andi Kleen <andi@basil.nowhere.org> | 2007-05-02 13:27:22 -0400 |
| commit | a3193348d407baaa7aef79decfa0e9a7fef74a17 (patch) | |
| tree | b54496944b1fb6307ea6c144ef9aee0552b98a7c | |
| parent | b5229dbb857f61d77d8d4048d9033387a5411b8e (diff) | |
[PATCH] i386: type may be unused
In the case of !CONFIG_PCI_DIRECT && !CONFIG_PCI_MMCONFIG, type is
unreferened.
Cc: Andi Kleen <ak@suse.de>
Signed-off-by: David Rientjes <rientjes@google.com>
Signed-off-by: Andi Kleen <ak@suse.de>
| -rw-r--r-- | arch/i386/pci/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/pci/init.c b/arch/i386/pci/init.c index b21b6da8ab1d..1cf11af96de2 100644 --- a/arch/i386/pci/init.c +++ b/arch/i386/pci/init.c | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | in the right sequence from here. */ | 6 | in the right sequence from here. */ |
| 7 | static __init int pci_access_init(void) | 7 | static __init int pci_access_init(void) |
| 8 | { | 8 | { |
| 9 | int type = 0; | 9 | int type __attribute__((unused)) = 0; |
| 10 | 10 | ||
| 11 | #ifdef CONFIG_PCI_DIRECT | 11 | #ifdef CONFIG_PCI_DIRECT |
| 12 | type = pci_direct_probe(); | 12 | type = pci_direct_probe(); |
