From f8777d411cb961b3b65f727c0e884399187d8941 Mon Sep 17 00:00:00 2001 From: Ahmad Fatoum Date: Sat, 30 Oct 2021 19:58:07 +0200 Subject: aiodev: fix bitrotted EXPORT_SYMBOL Build with module support enabled rightfully complains about the unknown symbol. Signed-off-by: Ahmad Fatoum Link: https://lore.barebox.org/20211030175812.2276705-5-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer --- drivers/aiodev/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3