diff options
author | Justin P. Mattock <justinmattock@gmail.com> | 2010-08-10 21:03:09 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-11 11:59:20 -0400 |
commit | f46c77c283e514a747aee7e8c4f5afc70274c232 (patch) | |
tree | ce74249748d538105237c565c5bca8e98e545cde /drivers | |
parent | cfbef3cb16658046c6faa8c9816018dd11ae62f0 (diff) |
drivers/char/ipmi/ipmi_si_intf.c: fix warning: variable 'addr_space' set but not used
Fix a warning message generated by GCC, and also updates a web address
pointing to a pdf containing information.
CC [M] drivers/char/ipmi/ipmi_si_intf.o
drivers/char/ipmi/ipmi_si_intf.c: In function 'try_init_spmi':
drivers/char/ipmi/ipmi_si_intf.c:2016:8: warning: variable 'addr_space' set but not used
Signed-off-by: Sergey V. <sftp.mtuci@gmail.com>
Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
Acked-by: Corey Minyard <minyard@acm.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/char/ipmi/ipmi_si_intf.c | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c index ff68e7c34ce7..ecfe43beb9c2 100644 --- a/drivers/char/ipmi/ipmi_si_intf.c +++ b/drivers/char/ipmi/ipmi_si_intf.c | |||
@@ -1965,8 +1965,8 @@ static int acpi_gpe_irq_setup(struct smi_info *info) | |||
1965 | 1965 | ||
1966 | /* | 1966 | /* |
1967 | * Defined at | 1967 | * Defined at |
1968 | * http://h21007.www2.hp.com/dspp/files/unprotected/devresource/ | 1968 | * http://h21007.www2.hp.com/portal/download/files |
1969 | * Docs/TechPapers/IA64/hpspmi.pdf | 1969 | * /unprot/hpspmi.pdf |
1970 | */ | 1970 | */ |
1971 | struct SPMITable { | 1971 | struct SPMITable { |
1972 | s8 Signature[4]; | 1972 | s8 Signature[4]; |
@@ -2013,18 +2013,12 @@ struct SPMITable { | |||
2013 | static __devinit int try_init_spmi(struct SPMITable *spmi) | 2013 | static __devinit int try_init_spmi(struct SPMITable *spmi) |
2014 | { | 2014 | { |
2015 | struct smi_info *info; | 2015 | struct smi_info *info; |
2016 | u8 addr_space; | ||
2017 | 2016 | ||
2018 | if (spmi->IPMIlegacy != 1) { | 2017 | if (spmi->IPMIlegacy != 1) { |
2019 | printk(KERN_INFO PFX "Bad SPMI legacy %d\n", spmi->IPMIlegacy); | 2018 | printk(KERN_INFO PFX "Bad SPMI legacy %d\n", spmi->IPMIlegacy); |
2020 | return -ENODEV; | 2019 | return -ENODEV; |
2021 | } | 2020 | } |
2022 | 2021 | ||
2023 | if (spmi->addr.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) | ||
2024 | addr_space = IPMI_MEM_ADDR_SPACE; | ||
2025 | else | ||
2026 | addr_space = IPMI_IO_ADDR_SPACE; | ||
2027 | |||
2028 | info = kzalloc(sizeof(*info), GFP_KERNEL); | 2022 | info = kzalloc(sizeof(*info), GFP_KERNEL); |
2029 | if (!info) { | 2023 | if (!info) { |
2030 | printk(KERN_ERR PFX "Could not allocate SI data (3)\n"); | 2024 | printk(KERN_ERR PFX "Could not allocate SI data (3)\n"); |