-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media: rename soc_camera I2C drivers
Those drivers are part of the legacy SoC camera framework. They're being converted to not use it, but sometimes we're keeping both legacy any new driver. This time, for example, we have two drivers on media with the same name: ov772x. That's bad. So, in order to prevent that to happen, let's prepend the SoC legacy drivers with soc_. No functional changes. Acked-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
- Loading branch information
Mauro Carvalho Chehab
committed
Oct 19, 2018
1 parent
490d84f
commit 3b796aa
Showing
10 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# SPDX-License-Identifier: GPL-2.0 | ||
obj-$(CONFIG_SOC_CAMERA_MT9M001) += mt9m001.o | ||
obj-$(CONFIG_SOC_CAMERA_MT9T112) += mt9t112.o | ||
obj-$(CONFIG_SOC_CAMERA_MT9V022) += mt9v022.o | ||
obj-$(CONFIG_SOC_CAMERA_OV5642) += ov5642.o | ||
obj-$(CONFIG_SOC_CAMERA_OV772X) += ov772x.o | ||
obj-$(CONFIG_SOC_CAMERA_OV9640) += ov9640.o | ||
obj-$(CONFIG_SOC_CAMERA_OV9740) += ov9740.o | ||
obj-$(CONFIG_SOC_CAMERA_RJ54N1) += rj54n1cb0c.o | ||
obj-$(CONFIG_SOC_CAMERA_TW9910) += tw9910.o | ||
obj-$(CONFIG_SOC_CAMERA_MT9M001) += soc_mt9m001.o | ||
obj-$(CONFIG_SOC_CAMERA_MT9T112) += soc_mt9t112.o | ||
obj-$(CONFIG_SOC_CAMERA_MT9V022) += soc_mt9v022.o | ||
obj-$(CONFIG_SOC_CAMERA_OV5642) += soc_ov5642.o | ||
obj-$(CONFIG_SOC_CAMERA_OV772X) += soc_ov772x.o | ||
obj-$(CONFIG_SOC_CAMERA_OV9640) += soc_ov9640.o | ||
obj-$(CONFIG_SOC_CAMERA_OV9740) += soc_ov9740.o | ||
obj-$(CONFIG_SOC_CAMERA_RJ54N1) += soc_rj54n1cb0c.o | ||
obj-$(CONFIG_SOC_CAMERA_TW9910) += soc_tw9910.o |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.