138-drivers-soc-atmel-fix-__initconst-should-be-placed-a.patch 1009 B

1234567891011121314151617181920212223242526
  1. From ed871f95827e9b6d4ee9f9eafec4e18b87fb1a56 Mon Sep 17 00:00:00 2001
  2. From: Claudiu Beznea <[email protected]>
  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. Fix checkpatch.pl warning: "__initconst should be placed after socs[]".
  7. Signed-off-by: Claudiu Beznea <[email protected]>
  8. Signed-off-by: Nicolas Ferre <[email protected]>
  9. Link: https://lore.kernel.org/r/[email protected]
  10. ---
  11. drivers/soc/atmel/soc.c | 2 +-
  12. 1 file changed, 1 insertion(+), 1 deletion(-)
  13. --- a/drivers/soc/atmel/soc.c
  14. +++ b/drivers/soc/atmel/soc.c
  15. @@ -29,7 +29,7 @@
  16. #define AT91_CIDR_EXT BIT(31)
  17. #define AT91_CIDR_MATCH_MASK GENMASK(30, 5)
  18. -static const struct at91_soc __initconst socs[] = {
  19. +static const struct at91_soc socs[] __initconst = {
  20. #ifdef CONFIG_SOC_AT91RM9200
  21. AT91_SOC(AT91RM9200_CIDR_MATCH, 0, "at91rm9200 BGA", "at91rm9200"),
  22. #endif