diff options
author | Luis R. Rodriguez <mcgrof@kernel.org> | 2018-03-10 09:14:50 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-03-20 04:28:46 -0400 |
commit | 5d6d1ddd27301dc85b13b794262c8bcececf88f1 (patch) | |
tree | ff04f9560bb23058e6dda957d388fa7e8fc03c0c /drivers/base/firmware_loader/fallback_table.c | |
parent | d73f821c7aea16ad4f501fb87c8b5373a025e7f4 (diff) |
firmware: move firmware loader into its own directory
This will make it much easier to manage as we manage to
keep trimming componnents down into their own files to more
easily manage and maintain this codebase.
Suggested-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Luis R. Rodriguez <mcgrof@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
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 | ||