| // SPDX-License-Identifier: GPL-2.0 |
| #include <linux/kconfig.h> |
| #include <linux/security.h> |
| #include <linux/highmem.h> |
| #include <linux/sysctl.h> |
| * firmware fallback configuration table |
| #ifdef CONFIG_FW_LOADER_USER_HELPER |
| static unsigned int zero; |
| static unsigned int one = 1; |
| struct firmware_fallback_config fw_fallback_config = { |
| .force_sysfs_fallback = IS_ENABLED(CONFIG_FW_LOADER_USER_HELPER_FALLBACK), |
| EXPORT_SYMBOL_GPL(fw_fallback_config); |
| struct ctl_table firmware_config_table[] = { |
| .procname = "force_sysfs_fallback", |
| .data = &fw_fallback_config.force_sysfs_fallback, |
| .maxlen = sizeof(unsigned int), |
| .proc_handler = proc_douintvec_minmax, |
| EXPORT_SYMBOL_GPL(firmware_config_table); |