Blob Blame History Raw
From c74e9584f61cea5fd8f5cab47e5ec8dfea8a594c Mon Sep 17 00:00:00 2001
From: Oliver Neukum <oneukum@suse.com>
Date: Tue, 26 Sep 2023 15:31:29 +0200
Subject: [PATCH] usb: ehci: move new member has_ci_pec_bug into hole
References: git-fixes
Patch-mainline: Never (kABI fixup)

The structure has a hole. Use it.

Signed-off-by: Oliver Neukum <oneukum@suse.com>
[mkoutny: SLE15-SP5 hole remaining after this: 13 bits]
---
 drivers/usb/host/ehci.h |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

--- a/drivers/usb/host/ehci.h
+++ b/drivers/usb/host/ehci.h
@@ -207,7 +207,6 @@ struct ehci_hcd {			/* one per controlle
 	unsigned		has_fsl_port_bug:1; /* FreeScale */
 	unsigned		has_fsl_hs_errata:1;	/* Freescale HS quirk */
 	unsigned		has_fsl_susp_errata:1;	/* NXP SUSP quirk */
-	unsigned		has_ci_pec_bug:1;	/* ChipIdea PEC bug */
 	unsigned		big_endian_mmio:1;
 	unsigned		big_endian_desc:1;
 	unsigned		big_endian_capbase:1;
@@ -222,6 +221,9 @@ struct ehci_hcd {			/* one per controlle
 	unsigned		spurious_oc:1;
 	unsigned		is_aspeed:1;
 	unsigned		zx_wakeup_clear_needed:1;
+ #ifndef __GENKSYMS__
+	unsigned		has_ci_pec_bug:1;
+ #endif
 
 	/* required for usb32 quirk */
 	#define OHCI_CTRL_HCFS          (3 << 6)