// SPDX-License-Identifier: GPL-2.0 /* * Linux kernel module helpers. */ #include <linux/of.h> #include <linux/module.h> #include <linux/slab.h> #include <linux/string.h> ssize_t of_modalias(const struct device_node *np, char *str, ssize_t len) { … } int of_request_module(const struct device_node *np) { … } EXPORT_SYMBOL_GPL(…);