diff options
Diffstat (limited to 'drivers/base/firmware_loader/fallback_table.c')
-rw-r--r-- | drivers/base/firmware_loader/fallback_table.c | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/drivers/base/firmware_loader/fallback_table.c b/drivers/base/firmware_loader/fallback_table.c new file mode 100644 index 000000000000..981419044c7e --- /dev/null +++ b/drivers/base/firmware_loader/fallback_table.c | |||
@@ -0,0 +1,29 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
2 | |||
3 | #include <linux/types.h> | ||
4 | #include <linux/kconfig.h> | ||
5 | #include <linux/list.h> | ||
6 | #include <linux/slab.h> | ||
7 | #include <linux/security.h> | ||
8 | #include <linux/highmem.h> | ||
9 | #include <linux/umh.h> | ||
10 | #include <linux/sysctl.h> | ||
11 | |||
12 | #include "fallback.h" | ||
13 | #include "firmware.h" | ||
14 | |||
15 | /* | ||
16 | * firmware fallback configuration table | ||
17 | */ | ||
18 | |||
19 | /* Module or buit-in */ | ||
20 | #ifdef CONFIG_FW_LOADER_USER_HELPER | ||
21 | |||
22 | struct firmware_fallback_config fw_fallback_config = { | ||
23 | .force_sysfs_fallback = IS_ENABLED(CONFIG_FW_LOADER_USER_HELPER_FALLBACK), | ||
24 | .loading_timeout = 60, | ||
25 | .old_timeout = 60, | ||
26 | }; | ||
27 | EXPORT_SYMBOL_GPL(fw_fallback_config); | ||
28 | |||
29 | #endif | ||