diff options
author | Steven Toth <stoth@linuxtv.org> | 2008-09-12 00:37:37 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-12 07:37:05 -0400 |
commit | bfbf2dae30ed75bceccc6a88d2d9368694d6bf40 (patch) | |
tree | e0a0c548379bfb552553a247c6a90a4037adf562 /drivers/media/dvb/frontends/cx24116.c | |
parent | 363429a089590f3f4071ebc492b3712fdcba770b (diff) |
V4L/DVB (9004): S2API: Implement GET/SET handing to the demods
The frontends will be notified (if they chose) of all _get and _set commands
so they can help determine result or action. Results are now returned
to userspace correctly.
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/cx24116.c')
-rw-r--r-- | drivers/media/dvb/frontends/cx24116.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/dvb/frontends/cx24116.c b/drivers/media/dvb/frontends/cx24116.c index 9f93930a2594..0ac2c5493087 100644 --- a/drivers/media/dvb/frontends/cx24116.c +++ b/drivers/media/dvb/frontends/cx24116.c | |||
@@ -802,9 +802,9 @@ static int cx24116_set_property(struct dvb_frontend *fe, struct dtv_property* tv | |||
802 | return 0; | 802 | return 0; |
803 | } | 803 | } |
804 | 804 | ||
805 | static int cx24116_set_params(struct dvb_frontend *fe) | 805 | static int cx24116_get_property(struct dvb_frontend *fe, struct dtv_property* tvp) |
806 | { | 806 | { |
807 | dprintk("%s(..) We were notified that a tune request may occur\n", __func__); | 807 | dprintk("%s(..)\n", __func__); |
808 | return 0; | 808 | return 0; |
809 | } | 809 | } |
810 | 810 | ||
@@ -964,7 +964,7 @@ static struct dvb_frontend_ops cx24116_ops = { | |||
964 | .diseqc_send_burst = cx24116_diseqc_send_burst, | 964 | .diseqc_send_burst = cx24116_diseqc_send_burst, |
965 | 965 | ||
966 | .set_property = cx24116_set_property, | 966 | .set_property = cx24116_set_property, |
967 | .set_params = cx24116_set_params, | 967 | .get_property = cx24116_get_property, |
968 | .set_frontend = cx24116_set_frontend, | 968 | .set_frontend = cx24116_set_frontend, |
969 | }; | 969 | }; |
970 | 970 | ||