platform/x86: intel_pmc_core: Remove unnecessary assignments
There is no need to assign NULL or 0 in the static structures explicitly. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
This commit is contained in:
parent
b1cb33dae4
commit
476bac56c1
|
@ -822,8 +822,8 @@ static const struct x86_cpu_id intel_pmc_core_ids[] = {
|
|||
MODULE_DEVICE_TABLE(x86cpu, intel_pmc_core_ids);
|
||||
|
||||
static const struct pci_device_id pmc_pci_ids[] = {
|
||||
{ PCI_VDEVICE(INTEL, SPT_PMC_PCI_DEVICE_ID), 0},
|
||||
{ 0, }
|
||||
{ PCI_VDEVICE(INTEL, SPT_PMC_PCI_DEVICE_ID) },
|
||||
{ }
|
||||
};
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue