public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fixes field names that changed
@ 2010-08-17 14:34 Henrique Camargo
  2010-08-19  0:16 ` Aguirre, Sergio
  0 siblings, 1 reply; 4+ messages in thread
From: Henrique Camargo @ 2010-08-17 14:34 UTC (permalink / raw)
  To: Mauro Carvalho Chehab
  Cc: Guennadi Liakhovetski, Muralidharan Karicheri, linux-media,
	linux-kernel

If CONFIG_VIDEO_ADV_DEBUG was set, the driver failed to compile because the fields get_register and set_register changed names to s_register and s_register in the struct v4l2_subdev_core_ops.

Signed-off-by: Henrique Camargo <henrique@henriquecamargo.com>
---
 drivers/media/video/mt9t031.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/media/video/mt9t031.c b/drivers/media/video/mt9t031.c
index 716fea6..f3d1995 100644
--- a/drivers/media/video/mt9t031.c
+++ b/drivers/media/video/mt9t031.c
@@ -499,8 +499,8 @@ static const struct v4l2_subdev_core_ops mt9t031_core_ops = {
 	.g_ctrl	= mt9t031_get_control,
 	.s_ctrl	= mt9t031_set_control,
 #ifdef CONFIG_VIDEO_ADV_DEBUG
-	.get_register = mt9t031_get_register,
-	.set_register = mt9t031_set_register,
+	.g_register = mt9t031_get_register,
+	.s_register = mt9t031_set_register,
 #endif
 };
 
-- 
1.7.0.4




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

* RE: [PATCH] Fixes field names that changed
  2010-08-17 14:34 [PATCH] Fixes field names that changed Henrique Camargo
@ 2010-08-19  0:16 ` Aguirre, Sergio
  2010-08-19  0:18   ` Aguirre, Sergio
  0 siblings, 1 reply; 4+ messages in thread
From: Aguirre, Sergio @ 2010-08-19  0:16 UTC (permalink / raw)
  To: henrique@henriquecamargo.com, Mauro Carvalho Chehab
  Cc: Guennadi Liakhovetski, Karicheri, Muralidharan,
	linux-media@vger.kernel.org, linux-kernel@vger.kernel.org

Hi Henrique,

Just some minor comments about the patch description below:

> -----Original Message-----
> From: linux-media-owner@vger.kernel.org [mailto:linux-media-
> owner@vger.kernel.org] On Behalf Of Henrique Camargo
> Sent: Tuesday, August 17, 2010 9:35 AM
> To: Mauro Carvalho Chehab
> Cc: Guennadi Liakhovetski; Karicheri, Muralidharan; linux-
> media@vger.kernel.org; linux-kernel@vger.kernel.org
> Subject: [PATCH] Fixes field names that changed

Add missing subject prefix to quickly describe the affected driver:

Subject: [PATCH] mt9t032: Fixes field names that changed

> 
> If CONFIG_VIDEO_ADV_DEBUG was set, the driver failed to compile because
> the fields get_register and set_register changed names to s_register and
> s_register in the struct v4l2_subdev_core_ops.

Please break down this comment to 70 chars max.

Also, you said "s_register" twice.

Regards,
Sergio

> 
> Signed-off-by: Henrique Camargo <henrique@henriquecamargo.com>
> ---
>  drivers/media/video/mt9t031.c |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/media/video/mt9t031.c b/drivers/media/video/mt9t031.c
> index 716fea6..f3d1995 100644
> --- a/drivers/media/video/mt9t031.c
> +++ b/drivers/media/video/mt9t031.c
> @@ -499,8 +499,8 @@ static const struct v4l2_subdev_core_ops
> mt9t031_core_ops = {
>  	.g_ctrl	= mt9t031_get_control,
>  	.s_ctrl	= mt9t031_set_control,
>  #ifdef CONFIG_VIDEO_ADV_DEBUG
> -	.get_register = mt9t031_get_register,
> -	.set_register = mt9t031_set_register,
> +	.g_register = mt9t031_get_register,
> +	.s_register = mt9t031_set_register,
>  #endif
>  };
> 
> --
> 1.7.0.4
> 
> 
> 
> --
> 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

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

* RE: [PATCH] Fixes field names that changed
  2010-08-19  0:16 ` Aguirre, Sergio
@ 2010-08-19  0:18   ` Aguirre, Sergio
  2010-08-19 18:33     ` Henrique Camargo
  0 siblings, 1 reply; 4+ messages in thread
From: Aguirre, Sergio @ 2010-08-19  0:18 UTC (permalink / raw)
  To: Aguirre, Sergio, henrique@henriquecamargo.com,
	Mauro Carvalho Chehab
  Cc: Guennadi Liakhovetski, Karicheri, Muralidharan,
	linux-media@vger.kernel.org, linux-kernel@vger.kernel.org

Oops, fixing my own typo below:

> -----Original Message-----
> From: linux-media-owner@vger.kernel.org [mailto:linux-media-
> owner@vger.kernel.org] On Behalf Of Aguirre, Sergio
> Sent: Wednesday, August 18, 2010 7:16 PM
> To: henrique@henriquecamargo.com; Mauro Carvalho Chehab
> Cc: Guennadi Liakhovetski; Karicheri, Muralidharan; linux-
> media@vger.kernel.org; linux-kernel@vger.kernel.org
> Subject: RE: [PATCH] Fixes field names that changed
> 
> Hi Henrique,
> 
> Just some minor comments about the patch description below:
> 
> > -----Original Message-----
> > From: linux-media-owner@vger.kernel.org [mailto:linux-media-
> > owner@vger.kernel.org] On Behalf Of Henrique Camargo
> > Sent: Tuesday, August 17, 2010 9:35 AM
> > To: Mauro Carvalho Chehab
> > Cc: Guennadi Liakhovetski; Karicheri, Muralidharan; linux-
> > media@vger.kernel.org; linux-kernel@vger.kernel.org
> > Subject: [PATCH] Fixes field names that changed
> 
> Add missing subject prefix to quickly describe the affected driver:
> 
> Subject: [PATCH] mt9t032: Fixes field names that changed

mt9t032 -> mt9t031.

Sorry...

Regards,
Sergio
> 
> >
> > If CONFIG_VIDEO_ADV_DEBUG was set, the driver failed to compile because
> > the fields get_register and set_register changed names to s_register and
> > s_register in the struct v4l2_subdev_core_ops.
> 
> Please break down this comment to 70 chars max.
> 
> Also, you said "s_register" twice.
> 
> Regards,
> Sergio
> 
> >
> > Signed-off-by: Henrique Camargo <henrique@henriquecamargo.com>
> > ---
> >  drivers/media/video/mt9t031.c |    4 ++--
> >  1 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/drivers/media/video/mt9t031.c
> b/drivers/media/video/mt9t031.c
> > index 716fea6..f3d1995 100644
> > --- a/drivers/media/video/mt9t031.c
> > +++ b/drivers/media/video/mt9t031.c
> > @@ -499,8 +499,8 @@ static const struct v4l2_subdev_core_ops
> > mt9t031_core_ops = {
> >  	.g_ctrl	= mt9t031_get_control,
> >  	.s_ctrl	= mt9t031_set_control,
> >  #ifdef CONFIG_VIDEO_ADV_DEBUG
> > -	.get_register = mt9t031_get_register,
> > -	.set_register = mt9t031_set_register,
> > +	.g_register = mt9t031_get_register,
> > +	.s_register = mt9t031_set_register,
> >  #endif
> >  };
> >
> > --
> > 1.7.0.4
> >
> >
> >
> > --
> > 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
> --
> 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

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

* RE: [PATCH] Fixes field names that changed
  2010-08-19  0:18   ` Aguirre, Sergio
@ 2010-08-19 18:33     ` Henrique Camargo
  0 siblings, 0 replies; 4+ messages in thread
From: Henrique Camargo @ 2010-08-19 18:33 UTC (permalink / raw)
  To: Aguirre, Sergio
  Cc: Mauro Carvalho Chehab, Guennadi Liakhovetski,
	Karicheri, Muralidharan, linux-media@vger.kernel.org,
	linux-kernel@vger.kernel.org

Thank you Sergio for your help, I resent the patch a couple of minutes
ago taking your changes into account.

Best Regards,
Henrique Camargo

On Wed, 2010-08-18 at 19:18 -0500, Aguirre, Sergio wrote:
> Oops, fixing my own typo below:
> 
> > -----Original Message-----
> > From: linux-media-owner@vger.kernel.org [mailto:linux-media-
> > owner@vger.kernel.org] On Behalf Of Aguirre, Sergio
> > Sent: Wednesday, August 18, 2010 7:16 PM
> > To: henrique@henriquecamargo.com; Mauro Carvalho Chehab
> > Cc: Guennadi Liakhovetski; Karicheri, Muralidharan; linux-
> > media@vger.kernel.org; linux-kernel@vger.kernel.org
> > Subject: RE: [PATCH] Fixes field names that changed
> > 
> > Hi Henrique,
> > 
> > Just some minor comments about the patch description below:
> > 
> > > -----Original Message-----
> > > From: linux-media-owner@vger.kernel.org [mailto:linux-media-
> > > owner@vger.kernel.org] On Behalf Of Henrique Camargo
> > > Sent: Tuesday, August 17, 2010 9:35 AM
> > > To: Mauro Carvalho Chehab
> > > Cc: Guennadi Liakhovetski; Karicheri, Muralidharan; linux-
> > > media@vger.kernel.org; linux-kernel@vger.kernel.org
> > > Subject: [PATCH] Fixes field names that changed
> > 
> > Add missing subject prefix to quickly describe the affected driver:
> > 
> > Subject: [PATCH] mt9t032: Fixes field names that changed
> 
> mt9t032 -> mt9t031.
> 
> Sorry...
> 
> Regards,
> Sergio
> > 
> > >
> > > If CONFIG_VIDEO_ADV_DEBUG was set, the driver failed to compile because
> > > the fields get_register and set_register changed names to s_register and
> > > s_register in the struct v4l2_subdev_core_ops.
> > 
> > Please break down this comment to 70 chars max.
> > 
> > Also, you said "s_register" twice.
> > 
> > Regards,
> > Sergio
> > 
> > >
> > > Signed-off-by: Henrique Camargo <henrique@henriquecamargo.com>
> > > ---
> > >  drivers/media/video/mt9t031.c |    4 ++--
> > >  1 files changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/drivers/media/video/mt9t031.c
> > b/drivers/media/video/mt9t031.c
> > > index 716fea6..f3d1995 100644
> > > --- a/drivers/media/video/mt9t031.c
> > > +++ b/drivers/media/video/mt9t031.c
> > > @@ -499,8 +499,8 @@ static const struct v4l2_subdev_core_ops
> > > mt9t031_core_ops = {
> > >  	.g_ctrl	= mt9t031_get_control,
> > >  	.s_ctrl	= mt9t031_set_control,
> > >  #ifdef CONFIG_VIDEO_ADV_DEBUG
> > > -	.get_register = mt9t031_get_register,
> > > -	.set_register = mt9t031_set_register,
> > > +	.g_register = mt9t031_get_register,
> > > +	.s_register = mt9t031_set_register,
> > >  #endif
> > >  };
> > >
> > > --
> > > 1.7.0.4
> > >
> > >
> > >
> > > --
> > > 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
> > --
> > 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



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

end of thread, other threads:[~2010-08-19 18:33 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-17 14:34 [PATCH] Fixes field names that changed Henrique Camargo
2010-08-19  0:16 ` Aguirre, Sergio
2010-08-19  0:18   ` Aguirre, Sergio
2010-08-19 18:33     ` Henrique Camargo

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