summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2021-10-30 19:58:07 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2021-11-01 11:32:16 +0100
commitf8777d411cb961b3b65f727c0e884399187d8941 (patch)
tree69f683b7cbddcc5dac33faa497f4d38a846b7760
parent1f2398c89b20da416ce81c09a397c5ed9da03a1d (diff)
downloadbarebox-f8777d411cb961b3b65f727c0e884399187d8941.tar.gz
barebox-f8777d411cb961b3b65f727c0e884399187d8941.tar.xz
aiodev: fix bitrotted EXPORT_SYMBOL
Build with module support enabled rightfully complains about the unknown symbol. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20211030175812.2276705-5-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--drivers/aiodev/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/aiodev/core.c b/drivers/aiodev/core.c
index 7240de2c40..559695c4f6 100644
--- a/drivers/aiodev/core.c
+++ b/drivers/aiodev/core.c
@@ -37,7 +37,7 @@ struct aiochannel *aiochannel_by_name(const char *name)
return ERR_PTR(-ENOENT);
}
-EXPORT_SYMBOL(aiochannel_get_by_name);
+EXPORT_SYMBOL(aiochannel_by_name);
struct aiochannel *aiochannel_get(struct device_d *dev, int index)
{