Message ID | 1376909932-23644-6-git-send-email-shaik.ameer@samsung.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Hi Shaik,
On 08/19/2013 12:58 PM, Shaik Ameer Basha wrote:
> This patch adds the Makefile for the M-Scaler (M2M scaler).
Perhaps we could combine this with patch 3/5 ?
--
Regards,
Sylwester
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Hi Sylwester, On Thu, Aug 29, 2013 at 3:42 PM, Sylwester Nawrocki <s.nawrocki@samsung.com> wrote: > Hi Shaik, > > On 08/19/2013 12:58 PM, Shaik Ameer Basha wrote: >> This patch adds the Makefile for the M-Scaler (M2M scaler). > > Perhaps we could combine this with patch 3/5 ? Ok. I will do that. are you done with the review? can I start preparing for v3? Regards, Shaik > > -- > Regards, > Sylwester > -- > To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On 08/29/2013 01:55 PM, Shaik Ameer Basha wrote: > Hi Sylwester, > > On Thu, Aug 29, 2013 at 3:42 PM, Sylwester Nawrocki > <s.nawrocki@samsung.com> wrote: >> Hi Shaik, >> >> On 08/19/2013 12:58 PM, Shaik Ameer Basha wrote: >>> This patch adds the Makefile for the M-Scaler (M2M scaler). >> >> Perhaps we could combine this with patch 3/5 ? > > Ok. I will do that. > > are you done with the review? can I start preparing for v3? Yes, I've left some more comments for you. :) Regards,
diff --git a/drivers/media/platform/Kconfig b/drivers/media/platform/Kconfig index 08de865..bff437a 100644 --- a/drivers/media/platform/Kconfig +++ b/drivers/media/platform/Kconfig @@ -201,6 +201,14 @@ config VIDEO_SAMSUNG_EXYNOS_GSC help This is a v4l2 driver for Samsung EXYNOS5 SoC G-Scaler. +config VIDEO_SAMSUNG_EXYNOS_MSCL + tristate "Samsung Exynos M-Scaler driver" + depends on OF && VIDEO_DEV && VIDEO_V4L2 && ARCH_EXYNOS5 + select VIDEOBUF2_DMA_CONTIG + select V4L2_MEM2MEM_DEV + help + This is a v4l2 driver for Samsung EXYNOS5 SoC M-Scaler. + config VIDEO_SH_VEU tristate "SuperH VEU mem2mem video processing driver" depends on VIDEO_DEV && VIDEO_V4L2 && GENERIC_HARDIRQS diff --git a/drivers/media/platform/Makefile b/drivers/media/platform/Makefile index eee28dd..2452b09 100644 --- a/drivers/media/platform/Makefile +++ b/drivers/media/platform/Makefile @@ -37,6 +37,7 @@ obj-$(CONFIG_VIDEO_SAMSUNG_S5P_TV) += s5p-tv/ obj-$(CONFIG_VIDEO_SAMSUNG_S5P_G2D) += s5p-g2d/ obj-$(CONFIG_VIDEO_SAMSUNG_EXYNOS_GSC) += exynos-gsc/ +obj-$(CONFIG_VIDEO_SAMSUNG_EXYNOS_MSCL) += exynos-mscl/ obj-$(CONFIG_BLACKFIN) += blackfin/ diff --git a/drivers/media/platform/exynos-mscl/Makefile b/drivers/media/platform/exynos-mscl/Makefile new file mode 100644 index 0000000..c9ffcd8 --- /dev/null +++ b/drivers/media/platform/exynos-mscl/Makefile @@ -0,0 +1,3 @@ +exynos-mscl-objs := mscl-core.o mscl-m2m.o mscl-regs.o + +obj-$(CONFIG_VIDEO_SAMSUNG_EXYNOS_MSCL) += exynos-mscl.o
This patch adds the Makefile for the M-Scaler (M2M scaler). Signed-off-by: Shaik Ameer Basha <shaik.ameer@samsung.com> --- drivers/media/platform/Kconfig | 8 ++++++++ drivers/media/platform/Makefile | 1 + drivers/media/platform/exynos-mscl/Makefile | 3 +++ 3 files changed, 12 insertions(+) create mode 100644 drivers/media/platform/exynos-mscl/Makefile