public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* architecture part of video driver patch
@ 2009-12-01 15:42 Karicheri, Muralidharan
  2009-12-07 23:47 ` Kevin Hilman
  0 siblings, 1 reply; 2+ messages in thread
From: Karicheri, Muralidharan @ 2009-12-01 15:42 UTC (permalink / raw)
  To: khilman@deeprootsystems.com
  Cc: Mauro Carvalho Chehab, Hiremath, Vaibhav,
	linux-media@vger.kernel.org,
	davinci-linux-open-source@linux.davincidsp.com

[-- Attachment #1: Type: text/plain, Size: 701 bytes --]

Kevin,

Following patch merged to v4l-dvb linux-next has an architectural 
part as attached. If you have not merged it to your next branch
for linux-davinci tree, please do so at your earliest convenience
so that they are in sync.

Patch merged to linux-next is available at

http://git.kernel.org/?p=linux/kernel/git/mchehab/linux-next.git;a=commitdiff;h=600cc66f7f3ec93ab4f09cf6b63980f4c5e8f8db

I will be pushing some more patches to upstream that are having
changes to arch part. I will notify once they are merged to linux-next.

Thanks.

Murali Karicheri
Software Design Engineer
Texas Instruments Inc.
Germantown, MD 20874
phone: 301-407-9583
email: m-karicheri2@ti.com


[-- Attachment #2: Type: message/rfc822, Size: 4444 bytes --]

From: "Hiremath, Vaibhav" <hvaibhav@ti.com>
To: "linux-media@vger.kernel.org" <linux-media@vger.kernel.org>
Cc: "davinci-linux-open-source@linux.davincidsp.com" <davinci-linux-open-source@linux.davincidsp.com>
Subject: [PATCH 3/6] Davinci VPFE Capture: Take i2c adapter id through platform data
Date: Tue, 13 Oct 2009 10:08:54 -0500
Message-ID: <1255446534-16770-1-git-send-email-hvaibhav@ti.com>

From: Vaibhav Hiremath <hvaibhav@ti.com>

The I2C adapter ID is actually depends on Board and may vary, Davinci
uses id=1, but in case of AM3517 id=3.

So modified respective davinci board files.

Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
---
 arch/arm/mach-davinci/board-dm355-evm.c  |    1 +
 arch/arm/mach-davinci/board-dm644x-evm.c |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-davinci/board-dm355-evm.c b/arch/arm/mach-davinci/board-dm355-evm.c
index f683559..4a9252a 100644
--- a/arch/arm/mach-davinci/board-dm355-evm.c
+++ b/arch/arm/mach-davinci/board-dm355-evm.c
@@ -372,6 +372,7 @@ static struct vpfe_subdev_info vpfe_sub_devs[] = {
 
 static struct vpfe_config vpfe_cfg = {
 	.num_subdevs = ARRAY_SIZE(vpfe_sub_devs),
+	.i2c_adapter_id = 1,
 	.sub_devs = vpfe_sub_devs,
 	.card_name = "DM355 EVM",
 	.ccdc = "DM355 CCDC",
diff --git a/arch/arm/mach-davinci/board-dm644x-evm.c b/arch/arm/mach-davinci/board-dm644x-evm.c
index cfd9afa..fed64e2 100644
--- a/arch/arm/mach-davinci/board-dm644x-evm.c
+++ b/arch/arm/mach-davinci/board-dm644x-evm.c
@@ -257,6 +257,7 @@ static struct vpfe_subdev_info vpfe_sub_devs[] = {
 
 static struct vpfe_config vpfe_cfg = {
 	.num_subdevs = ARRAY_SIZE(vpfe_sub_devs),
+	.i2c_adapter_id = 1,
 	.sub_devs = vpfe_sub_devs,
 	.card_name = "DM6446 EVM",
 	.ccdc = "DM6446 CCDC",
-- 
1.6.2.4

_______________________________________________
Davinci-linux-open-source mailing list
Davinci-linux-open-source@linux.davincidsp.com
http://linux.davincidsp.com/mailman/listinfo/davinci-linux-open-source

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: architecture part of video driver patch
  2009-12-01 15:42 architecture part of video driver patch Karicheri, Muralidharan
@ 2009-12-07 23:47 ` Kevin Hilman
  0 siblings, 0 replies; 2+ messages in thread
From: Kevin Hilman @ 2009-12-07 23:47 UTC (permalink / raw)
  To: Karicheri, Muralidharan
  Cc: Mauro Carvalho Chehab, Hiremath, Vaibhav,
	linux-media@vger.kernel.org,
	davinci-linux-open-source@linux.davincidsp.com

"Karicheri, Muralidharan" <m-karicheri2@ti.com> writes:

> Kevin,
>
> Following patch merged to v4l-dvb linux-next has an architectural 
> part as attached. If you have not merged it to your next branch
> for linux-davinci tree, please do so at your earliest convenience
> so that they are in sync.

OK, applying to davinci git, and queuing for 2.6.34.

> Patch merged to linux-next is available at
>
> http://git.kernel.org/?p=linux/kernel/git/mchehab/linux-next.git;a=commitdiff;h=600cc66f7f3ec93ab4f09cf6b63980f4c5e8f8db
>
> I will be pushing some more patches to upstream that are having
> changes to arch part. I will notify once they are merged to linux-next.

OK, thanks,

Kevin

> Murali Karicheri
> Software Design Engineer
> Texas Instruments Inc.
> Germantown, MD 20874
> phone: 301-407-9583
> email: m-karicheri2@ti.com
>
> From: "Hiremath, Vaibhav" <hvaibhav@ti.com>
> Subject: [PATCH 3/6] Davinci VPFE Capture: Take i2c adapter id through platform data
> To: "linux-media@vger.kernel.org" <linux-media@vger.kernel.org>
> CC: "davinci-linux-open-source@linux.davincidsp.com" <davinci-linux-open-source@linux.davincidsp.com>
> Date: Tue, 13 Oct 2009 10:08:54 -0500
>
> From: Vaibhav Hiremath <hvaibhav@ti.com>
>
> The I2C adapter ID is actually depends on Board and may vary, Davinci
> uses id=1, but in case of AM3517 id=3.
>
> So modified respective davinci board files.
>
> Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
> ---
>  arch/arm/mach-davinci/board-dm355-evm.c  |    1 +
>  arch/arm/mach-davinci/board-dm644x-evm.c |    1 +
>  2 files changed, 2 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/mach-davinci/board-dm355-evm.c b/arch/arm/mach-davinci/board-dm355-evm.c
> index f683559..4a9252a 100644
> --- a/arch/arm/mach-davinci/board-dm355-evm.c
> +++ b/arch/arm/mach-davinci/board-dm355-evm.c
> @@ -372,6 +372,7 @@ static struct vpfe_subdev_info vpfe_sub_devs[] = {
>  
>  static struct vpfe_config vpfe_cfg = {
>  	.num_subdevs = ARRAY_SIZE(vpfe_sub_devs),
> +	.i2c_adapter_id = 1,
>  	.sub_devs = vpfe_sub_devs,
>  	.card_name = "DM355 EVM",
>  	.ccdc = "DM355 CCDC",
> diff --git a/arch/arm/mach-davinci/board-dm644x-evm.c b/arch/arm/mach-davinci/board-dm644x-evm.c
> index cfd9afa..fed64e2 100644
> --- a/arch/arm/mach-davinci/board-dm644x-evm.c
> +++ b/arch/arm/mach-davinci/board-dm644x-evm.c
> @@ -257,6 +257,7 @@ static struct vpfe_subdev_info vpfe_sub_devs[] = {
>  
>  static struct vpfe_config vpfe_cfg = {
>  	.num_subdevs = ARRAY_SIZE(vpfe_sub_devs),
> +	.i2c_adapter_id = 1,
>  	.sub_devs = vpfe_sub_devs,
>  	.card_name = "DM6446 EVM",
>  	.ccdc = "DM6446 CCDC",
> -- 
> 1.6.2.4
>
> _______________________________________________
> Davinci-linux-open-source mailing list
> Davinci-linux-open-source@linux.davincidsp.com
> http://linux.davincidsp.com/mailman/listinfo/davinci-linux-open-source
> ----------

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-12-07 23:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-01 15:42 architecture part of video driver patch Karicheri, Muralidharan
2009-12-07 23:47 ` Kevin Hilman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox