diff options
| author | Kory Maincent <[email protected]> | 2024-06-20 12:25:43 +0200 |
|---|---|---|
| committer | Laurent Pinchart <[email protected]> | 2024-06-26 09:14:02 +0300 |
| commit | fea074e97886b7ee2fe04a17bd60fd41723da1b7 (patch) | |
| tree | 546ded71b8e75410baa4edf515c2888c96117536 /drivers | |
| parent | 57e9ce68ae98551da9c161aaab12b41fe8601856 (diff) | |
media: i2c: Kconfig: Fix missing firmware upload config select
FW_LOADER config only selects the firmware loader API, but we also need
the sysfs_upload symbols for firmware_upload_unregister() and
firmware_upload_register() to function properly.
Fixes: 7a52ab415b43 ("media: i2c: Add driver for THine THP7312")
Cc: [email protected]
Signed-off-by: Kory Maincent <[email protected]>
Reviewed-by: Laurent Pinchart <[email protected]>
Reviewed-by: Paul Elder <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Laurent Pinchart <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/media/i2c/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/media/i2c/Kconfig b/drivers/media/i2c/Kconfig index 8aac41513b59..8ba096b8ebca 100644 --- a/drivers/media/i2c/Kconfig +++ b/drivers/media/i2c/Kconfig @@ -710,6 +710,7 @@ config VIDEO_THP7312 tristate "THine THP7312 support" depends on I2C select FW_LOADER + select FW_UPLOAD select MEDIA_CONTROLLER select V4L2_CCI_I2C select V4L2_FWNODE |