Add a helper function to find an alias, remove it from the list of aliases, and destroy it. Co-developed-by: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Signed-off-by: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Signed-off-by: Ayush Singh <ayush@xxxxxxxxxxxxxxx> --- drivers/of/base.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/drivers/of/base.c b/drivers/of/base.c index e5cd75fca95132060334aa8547c58951d2132cfb..1cfb3cd4493e17d16868981288115798c6a6a151 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c @@ -221,6 +221,20 @@ static void of_alias_create(const struct property *pp, of_alias_add(ap, np, id, start, len); } +static void of_alias_destroy(const char *name, void (*dt_free)(void *)) +{ + struct alias_prop *ap; + + list_for_each_entry(ap, &aliases_lookup, link) { + if (strcmp(ap->alias, name)) + continue; + + list_del(&ap->link); + dt_free(ap); + return; + } +} + void __init of_core_init(void) { struct device_node *np; -- 2.47.0