forked from luck/tmp_suning_uos_patched
PCI: fix uninitialized variable 'cap_mask'
Get rid of these: drivers/pci/pcie/portdrv_core.c: In function 'pcie_port_device_register': drivers/pci/pcie/portdrv_core.c:275:16: warning: 'cap_mask' may be used uninitialized in this function [-Wuninitialized] drivers/pci/pcie/portdrv_core.c:240:6: note: 'cap_mask' was declared here In some cases, 'cap_mask' may be not set in pcie_port_platform_notify, holding a garbage value. Signed-off-by: Chunhe Lan <Chunhe.Lan@freescale.com> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
This commit is contained in:
parent
0cbaa57d82
commit
1267b3a325
|
@ -249,7 +249,7 @@ static int get_port_device_capability(struct pci_dev *dev)
|
|||
int services = 0, pos;
|
||||
u16 reg16;
|
||||
u32 reg32;
|
||||
int cap_mask;
|
||||
int cap_mask = 0;
|
||||
int err;
|
||||
|
||||
if (pcie_ports_disabled)
|
||||
|
|
Loading…
Reference in New Issue
Block a user