ath25: switch default kernel to 5.15
[openwrt/staging/ldir.git] / target / linux / at91 / patches-5.10 / 138-drivers-soc-atmel-fix-__initconst-should-be-placed-a.patch
1 From ed871f95827e9b6d4ee9f9eafec4e18b87fb1a56 Mon Sep 17 00:00:00 2001
2 From: Claudiu Beznea <claudiu.beznea@microchip.com>
3 Date: Fri, 22 Jan 2021 14:21:33 +0200
4 Subject: [PATCH 138/247] drivers: soc: atmel: fix "__initconst should be
5 placed after socs[]" warning
6
7 Fix checkpatch.pl warning: "__initconst should be placed after socs[]".
8
9 Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
10 Signed-off-by: Nicolas Ferre <nicolas.ferre@microchip.com>
11 Link: https://lore.kernel.org/r/1611318097-8970-4-git-send-email-claudiu.beznea@microchip.com
12 ---
13 drivers/soc/atmel/soc.c | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 --- a/drivers/soc/atmel/soc.c
17 +++ b/drivers/soc/atmel/soc.c
18 @@ -29,7 +29,7 @@
19 #define AT91_CIDR_EXT BIT(31)
20 #define AT91_CIDR_MATCH_MASK GENMASK(30, 5)
21
22 -static const struct at91_soc __initconst socs[] = {
23 +static const struct at91_soc socs[] __initconst = {
24 #ifdef CONFIG_SOC_AT91RM9200
25 AT91_SOC(AT91RM9200_CIDR_MATCH, 0, "at91rm9200 BGA", "at91rm9200"),
26 #endif