diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-11-03 21:06:46 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-11-03 21:44:17 +0300 |
commit | b889b3b07c9d9b7964f88d21b15899b142e10dc0 (patch) | |
tree | 38ab4ea53543cc54e6639d6c70ffc1ae8901fe90 /drivers/base | |
parent | 118e11182a8168515a11b27c4c6d80fbb233b7f8 (diff) | |
download | linux-b889b3b07c9d9b7964f88d21b15899b142e10dc0.tar.xz |
firmware loader: log path to loaded firmwares
This is useful for users who are trying to identify the firmwares in use
on their system.
Signed-off-by: Drew DeVault <sir@cmpwn.com>
Link: https://lore.kernel.org/r/20191103180646.34880-1-sir@cmpwn.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/base')
-rw-r--r-- | drivers/base/firmware_loader/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/base/firmware_loader/main.c b/drivers/base/firmware_loader/main.c index d5995d78d694..7302e6bc419b 100644 --- a/drivers/base/firmware_loader/main.c +++ b/drivers/base/firmware_loader/main.c @@ -504,6 +504,7 @@ fw_get_filesystem_firmware(struct device *device, struct fw_priv *fw_priv, path); continue; } + dev_dbg(device, "Loading firmware from %s\n", path); if (decompress) { dev_dbg(device, "f/w decompressing %s\n", fw_priv->fw_name); |