x86/PCI: Remove initialization of static variables to false

Remove the initialization of pci_ignore_seg to false which is pointless.

Link: https://lore.kernel.org/r/20211203080758.962-1-guolongji@uniontech.com
Signed-off-by: Longji Guo <guolongji@uniontech.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
This commit is contained in:
Longji Guo 2021-12-03 16:07:58 +08:00 committed by Bjorn Helgaas
parent 4353594eb0
commit 346865f074
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ struct pci_root_info {
};
static bool pci_use_crs = true;
static bool pci_ignore_seg = false;
static bool pci_ignore_seg;
static int __init set_use_crs(const struct dmi_system_id *id)
{