Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

firmware: meson-sm: enable build as module

Enable secure module driver as module.
Default remains built-in.

Signed-off-by: Kevin Hilman <khilman@baylibre.com>

+4 -2
+3 -2
drivers/firmware/meson/Kconfig
··· 3 3 # Amlogic Secure Monitor driver 4 4 # 5 5 config MESON_SM 6 - bool 7 - default ARCH_MESON 6 + tristate "Amlogic Secure Monitor driver" 7 + depends on ARCH_MESON || COMPILE_TEST 8 + default y 8 9 depends on ARM64_4K_PAGES 9 10 help 10 11 Say y here to enable the Amlogic secure monitor driver
+1
drivers/firmware/meson/meson_sm.c
··· 331 331 }, 332 332 }; 333 333 module_platform_driver_probe(meson_sm_driver, meson_sm_probe); 334 + MODULE_LICENSE("GPL v2");