From dd567c60ff3525ce38d45b0f2c612c82a010a114 Mon Sep 17 00:00:00 2001 From: Ramji Jiyani Date: Mon, 24 Jul 2023 07:15:49 +0000 Subject: [PATCH] ANDROID: GKI: Add Android ABI padding to wwan_port_ops Try to mitigate potential future api changes by adding a padding to struct wwan_port_ops. Fixes: 214e6f268b6a ("ANDROID: GKI: Add WWAN as GKI protected module") Bug: 287170531 Test: bazel run //common:kernel_aarch64_dist & TH Change-Id: I5589d9739ee547a3eb66ded432284691cf962023 Signed-off-by: Ramji Jiyani --- include/linux/wwan.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/linux/wwan.h b/include/linux/wwan.h index 7c2d5db089a1..e3ea3c12c588 100644 --- a/include/linux/wwan.h +++ b/include/linux/wwan.h @@ -61,6 +61,9 @@ struct wwan_port_ops { int (*tx_blocking)(struct wwan_port *port, struct sk_buff *skb); __poll_t (*tx_poll)(struct wwan_port *port, struct file *filp, poll_table *wait); + + ANDROID_KABI_RESERVE(1); + ANDROID_KABI_RESERVE(2); }; /**