diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2009-10-05 09:48:17 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-12-05 15:41:03 -0500 |
commit | 622b828ab795580903e79acb33fb44f5c9ce7b0f (patch) | |
tree | 6bd14a6769bd4caefdb1583c661948041b8a31d3 /drivers/media/video/cx23885/cx23885-dvb.c | |
parent | 7ef68e60d9435eb604a346babccb48000b94bc76 (diff) |
V4L/DVB (13238): v4l2_subdev: rename tuner s_standby operation to core s_power
Upcoming I2C v4l2_subdev drivers need a way to control the subdevice
power state from the core. This use case is already partially covered by
the tuner s_standby operation, but no way to explicitly come back from
the standby state is available.
Rename the tuner s_standby operation to core s_power, and fix tuner
drivers accordingly. The tuner core will call s_power(0) instead of
s_standby(). No explicit call to s_power(1) is required for tuners as
they are supposed to wake up from standby automatically.
[mchehab@redhat.com: CodingStyle fix]
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx23885/cx23885-dvb.c')
-rw-r--r-- | drivers/media/video/cx23885/cx23885-dvb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx23885/cx23885-dvb.c b/drivers/media/video/cx23885/cx23885-dvb.c index 4d439f2c4abc..f4f046cd81a5 100644 --- a/drivers/media/video/cx23885/cx23885-dvb.c +++ b/drivers/media/video/cx23885/cx23885-dvb.c | |||
@@ -920,7 +920,7 @@ static int dvb_register(struct cx23885_tsport *port) | |||
920 | fe0->dvb.frontend->callback = cx23885_tuner_callback; | 920 | fe0->dvb.frontend->callback = cx23885_tuner_callback; |
921 | 921 | ||
922 | /* Put the analog decoder in standby to keep it quiet */ | 922 | /* Put the analog decoder in standby to keep it quiet */ |
923 | call_all(dev, tuner, s_standby); | 923 | call_all(dev, core, s_power, 0); |
924 | 924 | ||
925 | if (fe0->dvb.frontend->ops.analog_ops.standby) | 925 | if (fe0->dvb.frontend->ops.analog_ops.standby) |
926 | fe0->dvb.frontend->ops.analog_ops.standby(fe0->dvb.frontend); | 926 | fe0->dvb.frontend->ops.analog_ops.standby(fe0->dvb.frontend); |