From: Mauro Carvalho Chehab <mchehab@infradead.org>
To: Kukjin Kim <kgene.kim@samsung.com>
Cc: linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org, ben-linux@fluff.org,
Sylwester Nawrocki <s.nawrocki@samsung.com>,
Kyungmin Park <kyungmin.park@samsung.com>
Subject: Re: [PATCH 3/7] [media] s5p-fimc: Remove to support fimc for S5PC100
Date: Wed, 18 May 2011 08:04:43 -0300 [thread overview]
Message-ID: <4DD3A7CB.6030408@infradead.org> (raw)
In-Reply-To: <1305162674-25860-4-git-send-email-kgene.kim@samsung.com>
Em 11-05-2011 22:11, Kukjin Kim escreveu:
> According to removing ARCH_S5PC100, we don't need to support
> fimc for S5PC100.
NACK
There's nothing mentioning the removal of ARCH_S5PC100 or the
corresponding bits at feature-removal-schedule.txt:
$ grep -i s5pc100 Documentation/feature-removal-schedule.txt
$
Mauro.
>
> Cc: Sylwester Nawrocki <s.nawrocki@samsung.com>
> Cc: Kyungmin Park <kyungmin.park@samsung.com>
> Cc: Mauro Carvalho Chehab <mchehab@infradead.org>
> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
> ---
> drivers/media/video/s5p-fimc/fimc-core.c | 14 --------------
> 1 files changed, 0 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/media/video/s5p-fimc/fimc-core.c b/drivers/media/video/s5p-fimc/fimc-core.c
> index dc91a85..89d59d6 100644
> --- a/drivers/media/video/s5p-fimc/fimc-core.c
> +++ b/drivers/media/video/s5p-fimc/fimc-core.c
> @@ -1871,17 +1871,6 @@ static struct samsung_fimc_variant fimc2_variant_exynos4 = {
> .pix_limit = &s5p_pix_limit[3],
> };
>
> -/* S5PC100 */
> -static struct samsung_fimc_driverdata fimc_drvdata_s5p = {
> - .variant = {
> - [0] = &fimc0_variant_s5p,
> - [1] = &fimc0_variant_s5p,
> - [2] = &fimc2_variant_s5p,
> - },
> - .num_entities = 3,
> - .lclk_frequency = 133000000UL,
> -};
> -
> /* S5PV210, S5PC110 */
> static struct samsung_fimc_driverdata fimc_drvdata_s5pv210 = {
> .variant = {
> @@ -1907,9 +1896,6 @@ static struct samsung_fimc_driverdata fimc_drvdata_exynos4 = {
>
> static struct platform_device_id fimc_driver_ids[] = {
> {
> - .name = "s5p-fimc",
> - .driver_data = (unsigned long)&fimc_drvdata_s5p,
> - }, {
> .name = "s5pv210-fimc",
> .driver_data = (unsigned long)&fimc_drvdata_s5pv210,
> }, {
WARNING: multiple messages have this Message-ID (diff)
From: mchehab@infradead.org (Mauro Carvalho Chehab)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 3/7] [media] s5p-fimc: Remove to support fimc for S5PC100
Date: Wed, 18 May 2011 08:04:43 -0300 [thread overview]
Message-ID: <4DD3A7CB.6030408@infradead.org> (raw)
In-Reply-To: <1305162674-25860-4-git-send-email-kgene.kim@samsung.com>
Em 11-05-2011 22:11, Kukjin Kim escreveu:
> According to removing ARCH_S5PC100, we don't need to support
> fimc for S5PC100.
NACK
There's nothing mentioning the removal of ARCH_S5PC100 or the
corresponding bits at feature-removal-schedule.txt:
$ grep -i s5pc100 Documentation/feature-removal-schedule.txt
$
Mauro.
>
> Cc: Sylwester Nawrocki <s.nawrocki@samsung.com>
> Cc: Kyungmin Park <kyungmin.park@samsung.com>
> Cc: Mauro Carvalho Chehab <mchehab@infradead.org>
> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
> ---
> drivers/media/video/s5p-fimc/fimc-core.c | 14 --------------
> 1 files changed, 0 insertions(+), 14 deletions(-)
>
> diff --git a/drivers/media/video/s5p-fimc/fimc-core.c b/drivers/media/video/s5p-fimc/fimc-core.c
> index dc91a85..89d59d6 100644
> --- a/drivers/media/video/s5p-fimc/fimc-core.c
> +++ b/drivers/media/video/s5p-fimc/fimc-core.c
> @@ -1871,17 +1871,6 @@ static struct samsung_fimc_variant fimc2_variant_exynos4 = {
> .pix_limit = &s5p_pix_limit[3],
> };
>
> -/* S5PC100 */
> -static struct samsung_fimc_driverdata fimc_drvdata_s5p = {
> - .variant = {
> - [0] = &fimc0_variant_s5p,
> - [1] = &fimc0_variant_s5p,
> - [2] = &fimc2_variant_s5p,
> - },
> - .num_entities = 3,
> - .lclk_frequency = 133000000UL,
> -};
> -
> /* S5PV210, S5PC110 */
> static struct samsung_fimc_driverdata fimc_drvdata_s5pv210 = {
> .variant = {
> @@ -1907,9 +1896,6 @@ static struct samsung_fimc_driverdata fimc_drvdata_exynos4 = {
>
> static struct platform_device_id fimc_driver_ids[] = {
> {
> - .name = "s5p-fimc",
> - .driver_data = (unsigned long)&fimc_drvdata_s5p,
> - }, {
> .name = "s5pv210-fimc",
> .driver_data = (unsigned long)&fimc_drvdata_s5pv210,
> }, {
next prev parent reply other threads:[~2011-05-18 11:04 UTC|newest]
Thread overview: 53+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-05-12 1:11 [PATCH 0/7] ARM: Removing ARCH_S5PC100 Kukjin Kim
2011-05-12 1:11 ` Kukjin Kim
2011-05-12 1:11 ` [PATCH 2/7] ASoC: Remove to support sound for S5PC100 Kukjin Kim
2011-05-12 1:11 ` Kukjin Kim
2011-05-12 6:11 ` Jassi Brar
2011-05-12 6:11 ` Jassi Brar
2011-05-12 7:53 ` Kukjin Kim
2011-05-12 7:53 ` Kukjin Kim
2011-05-12 8:38 ` Jassi Brar
2011-05-12 8:38 ` Jassi Brar
2011-05-16 7:19 ` Kukjin Kim
2011-05-16 7:19 ` Kukjin Kim
2011-05-16 7:28 ` Jassi Brar
2011-05-16 7:28 ` Jassi Brar
2011-05-12 1:11 ` [PATCH 3/7] [media] s5p-fimc: Remove to support fimc " Kukjin Kim
2011-05-12 1:11 ` Kukjin Kim
2011-05-12 9:23 ` Sylwester Nawrocki
2011-05-12 9:23 ` Sylwester Nawrocki
2011-05-16 7:15 ` Kukjin Kim
2011-05-16 7:15 ` Kukjin Kim
2011-05-17 12:10 ` Sylwester Nawrocki
2011-05-17 12:10 ` Sylwester Nawrocki
2011-05-18 8:57 ` Kukjin Kim
2011-05-18 8:57 ` Kukjin Kim
2011-05-18 11:04 ` Mauro Carvalho Chehab [this message]
2011-05-18 11:04 ` Mauro Carvalho Chehab
2011-05-12 1:11 ` [PATCH 4/7] mtd: OneNAND: Remove to support onenand " Kukjin Kim
2011-05-12 1:11 ` Kukjin Kim
2011-05-12 1:11 ` [PATCH 5/7] tty: Remove to support serial " Kukjin Kim
2011-05-12 1:11 ` Kukjin Kim
2011-05-12 1:11 ` [PATCH 6/7] video: s3c-fb: Remove to support fb " Kukjin Kim
2011-05-12 1:11 ` Kukjin Kim
2011-05-12 1:11 ` [PATCH 7/7] libata: Remove to support pata " Kukjin Kim
2011-05-12 1:11 ` Kukjin Kim
2011-05-12 1:26 ` Jeff Garzik
2011-05-12 1:26 ` Jeff Garzik
2011-05-13 12:55 ` [PATCH 0/7] ARM: Removing ARCH_S5PC100 Vasily Khoruzhick
2011-05-13 12:55 ` Vasily Khoruzhick
2011-05-16 16:48 ` Marek Szyprowski
2011-05-16 16:48 ` Marek Szyprowski
2011-05-18 8:56 ` Kukjin Kim
2011-05-18 8:56 ` Kukjin Kim
2011-05-16 17:28 ` Nick Pelling
2011-05-18 8:53 ` Kukjin Kim
2011-05-18 9:32 ` Vasily Khoruzhick
2011-05-17 12:19 ` Jean-Christophe PLAGNIOL-VILLARD
2011-05-17 12:19 ` Jean-Christophe PLAGNIOL-VILLARD
2011-05-18 8:44 ` Kukjin Kim
2011-05-18 8:44 ` Kukjin Kim
2011-05-18 9:36 ` Yauhen Kharuzhy
2011-05-18 9:36 ` Yauhen Kharuzhy
2011-05-18 9:36 ` Jean-Christophe PLAGNIOL-VILLARD
2011-05-18 9:36 ` Jean-Christophe PLAGNIOL-VILLARD
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4DD3A7CB.6030408@infradead.org \
--to=mchehab@infradead.org \
--cc=ben-linux@fluff.org \
--cc=kgene.kim@samsung.com \
--cc=kyungmin.park@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=s.nawrocki@samsung.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.