Skip to content

Commit

Permalink
drivers: soc: atmel: add null entry at the end of at91_soc_allowed_li…
Browse files Browse the repository at this point in the history
…st[]

of_match_node() calls __of_match_node() which loops though the entries of
matches array. It stops when condition:
(matches->name[0] || matches->type[0] || matches->compatible[0]) is
false. Thus, add a null entry at the end of at91_soc_allowed_list[]
array.

Fixes: caab13b ("drivers: soc: atmel: Avoid calling at91_soc_init on non AT91 SoCs")
Cc: [email protected] Freescale#4.12+
Signed-off-by: Claudiu Beznea <[email protected]>
Signed-off-by: Arnd Bergmann <[email protected]>
  • Loading branch information
claudiubeznea authored and arndb committed Jan 22, 2021
1 parent caab13b commit 6808965
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion drivers/soc/atmel/soc.c
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,8 @@ static const struct of_device_id at91_soc_allowed_list[] __initconst = {
{ .compatible = "atmel,at91rm9200", },
{ .compatible = "atmel,at91sam9", },
{ .compatible = "atmel,sama5", },
{ .compatible = "atmel,samv7", }
{ .compatible = "atmel,samv7", },
{ }
};

static int __init atmel_soc_device_init(void)
Expand Down

0 comments on commit 6808965

Please sign in to comment.