diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2014-01-24 12:41:11 -0500 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2014-02-12 19:31:54 -0500 |
commit | 8928d5a66df1428fd215e611088822d0bec08f58 (patch) | |
tree | 00ff972fda9d1028d4572ca8ac4c0f576e2fc982 /arch/x86/pci/acpi.c | |
parent | ce300008023fc4ddb561c48bf7e157c8e6279f46 (diff) |
x86/PCI: Remove unnecessary local variable initialization
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'arch/x86/pci/acpi.c')
-rw-r--r-- | arch/x86/pci/acpi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/pci/acpi.c b/arch/x86/pci/acpi.c index 4f25ec077552..ef7e92068eb1 100644 --- a/arch/x86/pci/acpi.c +++ b/arch/x86/pci/acpi.c | |||
@@ -473,11 +473,11 @@ probe_pci_root_info(struct pci_root_info *info, struct acpi_device *device, | |||
473 | struct pci_bus *pci_acpi_scan_root(struct acpi_pci_root *root) | 473 | struct pci_bus *pci_acpi_scan_root(struct acpi_pci_root *root) |
474 | { | 474 | { |
475 | struct acpi_device *device = root->device; | 475 | struct acpi_device *device = root->device; |
476 | struct pci_root_info *info = NULL; | 476 | struct pci_root_info *info; |
477 | int domain = root->segment; | 477 | int domain = root->segment; |
478 | int busnum = root->secondary.start; | 478 | int busnum = root->secondary.start; |
479 | LIST_HEAD(resources); | 479 | LIST_HEAD(resources); |
480 | struct pci_bus *bus = NULL; | 480 | struct pci_bus *bus; |
481 | struct pci_sysdata *sd; | 481 | struct pci_sysdata *sd; |
482 | int node; | 482 | int node; |
483 | #ifdef CONFIG_ACPI_NUMA | 483 | #ifdef CONFIG_ACPI_NUMA |