From f6c4fe59538b8404ceaaa85e659db48c5b0fe7dd Mon Sep 17 00:00:00 2001 From: "Justin M. Forbes" Date: Thu, 9 Dec 2021 15:21:44 -0600 Subject: Build fix patch already merged to kernel-ark Signed-off-by: Justin M. Forbes --- patch-5.16-redhat.patch | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/patch-5.16-redhat.patch b/patch-5.16-redhat.patch index 1f3597005..c52abf8e3 100644 --- a/patch-5.16-redhat.patch +++ b/patch-5.16-redhat.patch @@ -3178,3 +3178,36 @@ index c88167a414b4..e65a178ff9f4 100644 #ifdef CONFIG_PERF_EVENTS int security_perf_event_open(struct perf_event_attr *attr, int type) { +From f56e8c23f21528d48b494c2762b7d7674468273d Mon Sep 17 00:00:00 2001 +From: Prarit Bhargava +Date: Wed, 8 Dec 2021 15:44:29 -0500 +Subject: [PATCH] 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 +--- + drivers/pci/pci-driver.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/drivers/pci/pci-driver.c b/drivers/pci/pci-driver.c +index 5218a8c10a93..f0b7f4661f3a 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 +-- +2.33.1 + -- cgit