public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] s5p-tv: Include missing v4l2-dv-timings.h header file
@ 2013-08-18 20:00 Sylwester Nawrocki
  2013-08-19  7:15 ` Hans Verkuil
  0 siblings, 1 reply; 4+ messages in thread
From: Sylwester Nawrocki @ 2013-08-18 20:00 UTC (permalink / raw)
  To: linux-media; +Cc: Sylwester Nawrocki, Hans Verkuil

Include the v4l2-dv-timings.h header file which in the s5p-tv driver which
was supposed to be updated in commit 2576415846bcbad3c0a6885fc44f95083710
"[media] v4l2: move dv-timings related code to v4l2-dv-timings.c"

This fixes following build error:

drivers/media/platform/s5p-tv/hdmi_drv.c: In function ‘hdmi_s_dv_timings’:
drivers/media/platform/s5p-tv/hdmi_drv.c:628:3: error: implicit declaration of function ‘v4l_match_dv_timings’

Cc: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
---
 drivers/media/platform/s5p-tv/hdmi_drv.c |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/drivers/media/platform/s5p-tv/hdmi_drv.c b/drivers/media/platform/s5p-tv/hdmi_drv.c
index 1b34c36..f9af2c2 100644
--- a/drivers/media/platform/s5p-tv/hdmi_drv.c
+++ b/drivers/media/platform/s5p-tv/hdmi_drv.c
@@ -37,6 +37,7 @@
 #include <media/v4l2-common.h>
 #include <media/v4l2-dev.h>
 #include <media/v4l2-device.h>
+#include <media/v4l2-dv-timings.h>
 
 #include "regs-hdmi.h"
 
-- 
1.7.4.1


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

* Re: [PATCH] s5p-tv: Include missing v4l2-dv-timings.h header file
  2013-08-18 20:00 [PATCH] s5p-tv: Include missing v4l2-dv-timings.h header file Sylwester Nawrocki
@ 2013-08-19  7:15 ` Hans Verkuil
  2013-08-21  8:25   ` Sylwester Nawrocki
  0 siblings, 1 reply; 4+ messages in thread
From: Hans Verkuil @ 2013-08-19  7:15 UTC (permalink / raw)
  To: Sylwester Nawrocki; +Cc: linux-media, Sylwester Nawrocki, Hans Verkuil

On 08/18/2013 10:00 PM, Sylwester Nawrocki wrote:
> Include the v4l2-dv-timings.h header file which in the s5p-tv driver which
> was supposed to be updated in commit 2576415846bcbad3c0a6885fc44f95083710
> "[media] v4l2: move dv-timings related code to v4l2-dv-timings.c"
> 
> This fixes following build error:
> 
> drivers/media/platform/s5p-tv/hdmi_drv.c: In function ‘hdmi_s_dv_timings’:
> drivers/media/platform/s5p-tv/hdmi_drv.c:628:3: error: implicit declaration of function ‘v4l_match_dv_timings’
> 
> Cc: Hans Verkuil <hans.verkuil@cisco.com>

Acked-by: Hans Verkuil <hans.verkuil@cisco.com>

My apologies for missing this one.

Regards,

	Hans

> Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
> ---
>  drivers/media/platform/s5p-tv/hdmi_drv.c |    1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/media/platform/s5p-tv/hdmi_drv.c b/drivers/media/platform/s5p-tv/hdmi_drv.c
> index 1b34c36..f9af2c2 100644
> --- a/drivers/media/platform/s5p-tv/hdmi_drv.c
> +++ b/drivers/media/platform/s5p-tv/hdmi_drv.c
> @@ -37,6 +37,7 @@
>  #include <media/v4l2-common.h>
>  #include <media/v4l2-dev.h>
>  #include <media/v4l2-device.h>
> +#include <media/v4l2-dv-timings.h>
>  
>  #include "regs-hdmi.h"
>  
> 


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

* Re: [PATCH] s5p-tv: Include missing v4l2-dv-timings.h header file
  2013-08-19  7:15 ` Hans Verkuil
@ 2013-08-21  8:25   ` Sylwester Nawrocki
  2013-08-21  8:38     ` Hans Verkuil
  0 siblings, 1 reply; 4+ messages in thread
From: Sylwester Nawrocki @ 2013-08-21  8:25 UTC (permalink / raw)
  To: Hans Verkuil; +Cc: Sylwester Nawrocki, linux-media, Hans Verkuil

Hi Hans,

On 08/19/2013 09:15 AM, Hans Verkuil wrote:
> On 08/18/2013 10:00 PM, Sylwester Nawrocki wrote:
>> Include the v4l2-dv-timings.h header file which in the s5p-tv driver which
>> was supposed to be updated in commit 2576415846bcbad3c0a6885fc44f95083710
>> "[media] v4l2: move dv-timings related code to v4l2-dv-timings.c"
>>
>> This fixes following build error:
>>
>> drivers/media/platform/s5p-tv/hdmi_drv.c: In function ‘hdmi_s_dv_timings’:
>> drivers/media/platform/s5p-tv/hdmi_drv.c:628:3: error: implicit declaration of function ‘v4l_match_dv_timings’
>>
>> Cc: Hans Verkuil <hans.verkuil@cisco.com>
> 
> Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
> 
> My apologies for missing this one.

That's all right. Shit happens. I was wondering why this error
didn't show up in your daily builds.

--
Regards,
Sylwester

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

* Re: [PATCH] s5p-tv: Include missing v4l2-dv-timings.h header file
  2013-08-21  8:25   ` Sylwester Nawrocki
@ 2013-08-21  8:38     ` Hans Verkuil
  0 siblings, 0 replies; 4+ messages in thread
From: Hans Verkuil @ 2013-08-21  8:38 UTC (permalink / raw)
  To: Sylwester Nawrocki; +Cc: Sylwester Nawrocki, linux-media, Hans Verkuil

On Wed 21 August 2013 10:25:18 Sylwester Nawrocki wrote:
> Hi Hans,
> 
> On 08/19/2013 09:15 AM, Hans Verkuil wrote:
> > On 08/18/2013 10:00 PM, Sylwester Nawrocki wrote:
> >> Include the v4l2-dv-timings.h header file which in the s5p-tv driver which
> >> was supposed to be updated in commit 2576415846bcbad3c0a6885fc44f95083710
> >> "[media] v4l2: move dv-timings related code to v4l2-dv-timings.c"
> >>
> >> This fixes following build error:
> >>
> >> drivers/media/platform/s5p-tv/hdmi_drv.c: In function ‘hdmi_s_dv_timings’:
> >> drivers/media/platform/s5p-tv/hdmi_drv.c:628:3: error: implicit declaration of function ‘v4l_match_dv_timings’
> >>
> >> Cc: Hans Verkuil <hans.verkuil@cisco.com>
> > 
> > Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
> > 
> > My apologies for missing this one.
> 
> That's all right. Shit happens. I was wondering why this error
> didn't show up in your daily builds.

I had a local patch for that and I forgot to remove it. So next time it will
show up as an error again.

Regards,

	Hans

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

end of thread, other threads:[~2013-08-21  8:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-18 20:00 [PATCH] s5p-tv: Include missing v4l2-dv-timings.h header file Sylwester Nawrocki
2013-08-19  7:15 ` Hans Verkuil
2013-08-21  8:25   ` Sylwester Nawrocki
2013-08-21  8:38     ` Hans Verkuil

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