diff options
| author | Alexandre Courbot <acourbot@nvidia.com> | 2025-11-06 11:40:54 +0900 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2025-12-18 13:55:08 +0100 |
| commit | 80c2106b09d3b8cab3455176151181f05ca5d312 (patch) | |
| tree | cbc78badbab08df30b2db729b1cdd971525c2d2a /drivers | |
| parent | 6f1a1e7b5a48fca796a97c2eb477f968336ff240 (diff) | |
| download | linux-80c2106b09d3b8cab3455176151181f05ca5d312.tar.gz linux-80c2106b09d3b8cab3455176151181f05ca5d312.tar.bz2 linux-80c2106b09d3b8cab3455176151181f05ca5d312.zip | |
firmware_loader: make RUST_FW_LOADER_ABSTRACTIONS select FW_LOADER
[ Upstream commit 9906efa545d1d2cf25a614eeb219d3f8d5a302cd ]
The use of firmware_loader is an implementation detail of drivers rather
than a dependency. FW_LOADER is typically selected rather than depended
on; the Rust abstractions should do the same thing.
Fixes: de6582833db0 ("rust: add firmware abstractions")
Signed-off-by: Alexandre Courbot <acourbot@nvidia.com>
Link: https://patch.msgid.link/20251106-b4-select-rust-fw-v3-1-771172257755@nvidia.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/base/firmware_loader/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/firmware_loader/Kconfig b/drivers/base/firmware_loader/Kconfig index a03701674265..4bf593fb253a 100644 --- a/drivers/base/firmware_loader/Kconfig +++ b/drivers/base/firmware_loader/Kconfig @@ -40,7 +40,7 @@ config FW_LOADER_DEBUG config RUST_FW_LOADER_ABSTRACTIONS bool "Rust Firmware Loader abstractions" depends on RUST - depends on FW_LOADER=y + select FW_LOADER help This enables the Rust abstractions for the firmware loader API. |
