gpio-nct5104d: fix compilation with kernel 6.6
[openwrt/openwrt.git] / target / linux / generic / backport-6.1 / 863-stable-bus-mhi-host-pci_generic-constify-modem_telit_fn980_.patch
1 From 5f157aa89b876e82d6aafb2d009979118d0bdd2b Mon Sep 17 00:00:00 2001
2 From: Jeff Johnson <quic_jjohnson@quicinc.com>
3 Date: Thu, 22 Feb 2024 18:00:23 -0800
4 Subject: [PATCH 13/13] bus: mhi: host: pci_generic: constify
5 modem_telit_fn980_hw_v1_config
6
7 MHI expects the controller configs to be const, and all of the other ones
8 in this file already are, so constify modem_telit_fn980_hw_v1_config.
9
10 Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com>
11 Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12 Link: https://lore.kernel.org/r/20240222-mhi-const-bus-mhi-host-pci_generic-v1-1-d4c9b0b0a7a5@quicinc.com
13 Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
14 ---
15 drivers/bus/mhi/host/pci_generic.c | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18 --- a/drivers/bus/mhi/host/pci_generic.c
19 +++ b/drivers/bus/mhi/host/pci_generic.c
20 @@ -538,7 +538,7 @@ static struct mhi_event_config mhi_telit
21 MHI_EVENT_CONFIG_HW_DATA(2, 2048, 101)
22 };
23
24 -static struct mhi_controller_config modem_telit_fn980_hw_v1_config = {
25 +static const struct mhi_controller_config modem_telit_fn980_hw_v1_config = {
26 .max_channels = 128,
27 .timeout_ms = 20000,
28 .num_channels = ARRAY_SIZE(mhi_telit_fn980_hw_v1_channels),