Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) // SPDX-License-Identifier: GPL-2.0
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) #include <linux/module.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3) #include <linux/of_device.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5) /* This is a dummy device table linked into all of the crypto
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6)  * opcode drivers.  It serves to trigger the module autoloading
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7)  * mechanisms in userspace which scan the OF device tree and
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8)  * load any modules which have device table entries that
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9)  * match OF device nodes.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) static const struct of_device_id crypto_opcode_match[] = {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) 	{ .name = "cpu", .compatible = "sun4v", },
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) 	{},
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) MODULE_DEVICE_TABLE(of, crypto_opcode_match);