Re: [question] about open/release and vidioc_g_input/vidioc_s_input functions

2009-03-27 Thread Hans Verkuil
On Friday 27 March 2009 18:34:01 Alexey Klimov wrote: > On Fri, Mar 27, 2009 at 7:50 PM, Hans Verkuil wrote: > > On Friday 27 March 2009 17:44:05 Alexey Klimov wrote: > >> Hello, Hans > >> > >> On Tue, 2009-03-24 at 08:06 +0100, Hans Verkuil wrote: > >> > On Tuesday 24 March 2009 00:14:07 Alexey K

Re: [question] about open/release and vidioc_g_input/vidioc_s_input functions

2009-03-27 Thread Alexey Klimov
On Fri, Mar 27, 2009 at 7:50 PM, Hans Verkuil wrote: > On Friday 27 March 2009 17:44:05 Alexey Klimov wrote: >> Hello, Hans >> >> On Tue, 2009-03-24 at 08:06 +0100, Hans Verkuil wrote: >> > On Tuesday 24 March 2009 00:14:07 Alexey Klimov wrote: >> > > Hello, all >> > > >> > > ... >> > > static in

Re: [question] about open/release and vidioc_g_input/vidioc_s_input functions

2009-03-27 Thread Hans Verkuil
On Friday 27 March 2009 17:44:05 Alexey Klimov wrote: > Hello, Hans > > On Tue, 2009-03-24 at 08:06 +0100, Hans Verkuil wrote: > > On Tuesday 24 March 2009 00:14:07 Alexey Klimov wrote: > > > Hello, all > > > > > > ... > > > static int terratec_open(struct file *file) > > > { > > > return

Re: [question] about open/release and vidioc_g_input/vidioc_s_input functions

2009-03-27 Thread Alexey Klimov
Hello, Hans On Tue, 2009-03-24 at 08:06 +0100, Hans Verkuil wrote: > On Tuesday 24 March 2009 00:14:07 Alexey Klimov wrote: > > Hello, all > > > > ... > > static int terratec_open(struct file *file) > > { > > return 0; > > } > > > > static int terratec_release(struct file *file) > > { > >

Re: [question] about open/release and vidioc_g_input/vidioc_s_input functions

2009-03-24 Thread Hans Verkuil
> On Tuesday 24 March 2009 08:06:39 Hans Verkuil wrote: >> On Tuesday 24 March 2009 00:14:07 Alexey Klimov wrote: >> > Hello, all >> > >> > After last convertion of radio drivers to use v4l2_device we have such >> > code in many radio drivers: >> > (it's radio-terratec.c for example) >> > >> > ...

Re: [question] about open/release and vidioc_g_input/vidioc_s_input functions

2009-03-24 Thread Laurent Pinchart
On Tuesday 24 March 2009 08:06:39 Hans Verkuil wrote: > On Tuesday 24 March 2009 00:14:07 Alexey Klimov wrote: > > Hello, all > > > > After last convertion of radio drivers to use v4l2_device we have such > > code in many radio drivers: > > (it's radio-terratec.c for example) > > > > ... > > stati

Re: [question] about open/release and vidioc_g_input/vidioc_s_input functions

2009-03-24 Thread Hans Verkuil
On Tuesday 24 March 2009 00:14:07 Alexey Klimov wrote: > Hello, all > > After last convertion of radio drivers to use v4l2_device we have such > code in many radio drivers: > (it's radio-terratec.c for example) > > ... > static int terratec_open(struct file *file) > { > return 0; > } > > s

[question] about open/release and vidioc_g_input/vidioc_s_input functions

2009-03-23 Thread Alexey Klimov
Hello, all After last convertion of radio drivers to use v4l2_device we have such code in many radio drivers: (it's radio-terratec.c for example) ... static int terratec_open(struct file *file) { return 0; } static int terratec_release(struct file *file) { return 0; } ... and