summaryrefslogtreecommitdiffstats
path: root/drivers/media/platform/exynos4-is/fimc-isp-video.h
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@kernel.org>2022-03-13 11:18:16 +0100
committerMauro Carvalho Chehab <mchehab@kernel.org>2022-03-18 05:56:51 +0100
commit238c84f71120f41c45301359902a912a19370f3d (patch)
treec16ced196c926c08b0c1e9513a19710bbbfc9bfa /drivers/media/platform/exynos4-is/fimc-isp-video.h
parent9b18ef7c9ff408df170ac339c57a759145c055d2 (diff)
downloadlinux-238c84f71120f41c45301359902a912a19370f3d.tar.bz2
media: platform: rename exynos4-is/ to samsung/exynos4-is/
As the end goal is to have platform drivers split by vendor, rename exynos4-is/ to samsung/exynos4-is/. Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Diffstat (limited to 'drivers/media/platform/exynos4-is/fimc-isp-video.h')
-rw-r--r--drivers/media/platform/exynos4-is/fimc-isp-video.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/drivers/media/platform/exynos4-is/fimc-isp-video.h b/drivers/media/platform/exynos4-is/fimc-isp-video.h
deleted file mode 100644
index edcb3a5e3cb9..000000000000
--- a/drivers/media/platform/exynos4-is/fimc-isp-video.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-/*
- * Samsung EXYNOS4x12 FIMC-IS (Imaging Subsystem) driver
- *
- * Copyright (C) 2013 Samsung Electronics Co., Ltd.
- * Sylwester Nawrocki <s.nawrocki@samsung.com>
- */
-#ifndef FIMC_ISP_VIDEO__
-#define FIMC_ISP_VIDEO__
-
-#include <media/videobuf2-v4l2.h>
-#include "fimc-isp.h"
-
-#ifdef CONFIG_VIDEO_EXYNOS4_ISP_DMA_CAPTURE
-int fimc_isp_video_device_register(struct fimc_isp *isp,
- struct v4l2_device *v4l2_dev,
- enum v4l2_buf_type type);
-
-void fimc_isp_video_device_unregister(struct fimc_isp *isp,
- enum v4l2_buf_type type);
-
-void fimc_isp_video_irq_handler(struct fimc_is *is);
-#else
-static inline void fimc_isp_video_irq_handler(struct fimc_is *is)
-{
-}
-
-static inline int fimc_isp_video_device_register(struct fimc_isp *isp,
- struct v4l2_device *v4l2_dev,
- enum v4l2_buf_type type)
-{
- return 0;
-}
-
-void fimc_isp_video_device_unregister(struct fimc_isp *isp,
- enum v4l2_buf_type type)
-{
-}
-#endif /* !CONFIG_VIDEO_EXYNOS4_ISP_DMA_CAPTURE */
-
-#endif /* FIMC_ISP_VIDEO__ */