From: Prarit Bhargava <prarit@xxxxxxxxxx> drivers/pci/pci-driver.c: Fix if/ifdef typo This needs to be an ifdef, not an if. Fixes compile error: drivers/pci/pci-driver.c:299:5: warning: "CONFIG_RHEL_DIFFERENCES" is not defined, evaluates to 0 [-Wundef] 299 | #if CONFIG_RHEL_DIFFERENCES Signed-off-by: Prarit Bhargava <prarit@xxxxxxxxxx> diff --git a/drivers/pci/pci-driver.c b/drivers/pci/pci-driver.c index blahblah..blahblah 100644 --- a/drivers/pci/pci-driver.c +++ b/drivers/pci/pci-driver.c @@ -296,7 +296,7 @@ static struct attribute *pci_drv_attrs[] = { }; ATTRIBUTE_GROUPS(pci_drv); -#if CONFIG_RHEL_DIFFERENCES +#ifdef CONFIG_RHEL_DIFFERENCES /** * pci_hw_deprecated - Tell if a PCI device is deprecated * @ids: array of PCI device id structures to search in -- https://gitlab.com/cki-project/kernel-ark/-/merge_requests/1515 _______________________________________________ kernel mailing list -- kernel@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to kernel-leave@xxxxxxxxxxxxxxxxxxxxxxx Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedoraproject.org/archives/list/kernel@xxxxxxxxxxxxxxxxxxxxxxx Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure