From mboxrd@z Thu Jan 1 00:00:00 1970 From: Corentin Labbe Subject: [PATCH] of: add EXPORT_SYMBOL for of_device_compatible_match Date: Wed, 15 Feb 2017 15:22:45 +0100 Message-ID: <20170215142245.11207-1-clabbe.montjoie@gmail.com> Return-path: Sender: devicetree-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org, frowand.list-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Corentin Labbe List-Id: devicetree@vger.kernel.org This symbol will be needed for the dwmac-sun8i ethernet driver. For letting it to be build as module, of_device_compatible_match need to be exported. Signed-off-by: Corentin Labbe --- drivers/of/base.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/of/base.c b/drivers/of/base.c index df6f6e3..fba351b 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c @@ -524,6 +524,7 @@ int of_device_compatible_match(struct device_node *device, return score; } +EXPORT_SYMBOL(of_device_compatible_match); /** * of_machine_is_compatible - Test root of device tree for a given compatible value -- 2.10.2 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html