summaryrefslogtreecommitdiff
path: root/drivers/media
diff options
context:
space:
mode:
authorShawn Guo <shawn.guo@linaro.org>2021-04-25 10:00:24 +0800
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-05-13 16:14:45 +0200
commit0733d83905326baef3c25d8bd9a96fdc9eb71b86 (patch)
treebd8d3e3d7992743e35dc40d6dd1ee13eb861d424 /drivers/media
parent6efb943b8616ec53a5e444193dccf1af9ad627b5 (diff)
downloadlinux-0733d83905326baef3c25d8bd9a96fdc9eb71b86.tar.gz
firmware: replace HOTPLUG with UEVENT in FW_ACTION defines
With commit 312c004d36ce ("[PATCH] driver core: replace "hotplug" by "uevent"") already in the tree over a decade, update the name of FW_ACTION defines to follow semantics, and reflect what the defines are really meant for, i.e. whether or not generate user space event. Acked-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Link: https://lore.kernel.org/r/20210425020024.28057-1-shawn.guo@linaro.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/media')
-rw-r--r--drivers/media/platform/exynos4-is/fimc-is.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/platform/exynos4-is/fimc-is.c b/drivers/media/platform/exynos4-is/fimc-is.c
index 972d9601d236..8f3ba74f19f2 100644
--- a/drivers/media/platform/exynos4-is/fimc-is.c
+++ b/drivers/media/platform/exynos4-is/fimc-is.c
@@ -436,7 +436,7 @@ done:
static int fimc_is_request_firmware(struct fimc_is *is, const char *fw_name)
{
return request_firmware_nowait(THIS_MODULE,
- FW_ACTION_HOTPLUG, fw_name, &is->pdev->dev,
+ FW_ACTION_UEVENT, fw_name, &is->pdev->dev,
GFP_KERNEL, is, fimc_is_load_firmware);
}