diff options
author | Steven Toth <stoth@linuxtv.org> | 2008-09-12 00:37:37 -0400 |
---|---|---|
committer | Steven Toth <stoth@linuxtv.org> | 2008-09-12 00:37:37 -0400 |
commit | 099550d3d61d1b5857297d96bd736b6457011396 (patch) | |
tree | a579ef57e1c55a3a59175bfe484681c5aec06126 /linux/drivers/media/dvb/frontends/cx24116.c | |
parent | 72a780c4333fa7b78c93bdc12cf740ca51389daa (diff) | |
download | mediapointer-dvb-s2-099550d3d61d1b5857297d96bd736b6457011396.tar.gz mediapointer-dvb-s2-099550d3d61d1b5857297d96bd736b6457011396.tar.bz2 |
S2API: Implement GET/SET handing to the demods
From: Steven Toth <stoth@linuxtv.org>
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.
Priority: normal
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/cx24116.c')
-rw-r--r-- | linux/drivers/media/dvb/frontends/cx24116.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/dvb/frontends/cx24116.c b/linux/drivers/media/dvb/frontends/cx24116.c index 9f93930a2..0ac2c5493 100644 --- a/linux/drivers/media/dvb/frontends/cx24116.c +++ b/linux/drivers/media/dvb/frontends/cx24116.c @@ -802,9 +802,9 @@ static int cx24116_set_property(struct dvb_frontend *fe, struct dtv_property* tv return 0; } -static int cx24116_set_params(struct dvb_frontend *fe) +static int cx24116_get_property(struct dvb_frontend *fe, struct dtv_property* tvp) { - dprintk("%s(..) We were notified that a tune request may occur\n", __func__); + dprintk("%s(..)\n", __func__); return 0; } @@ -964,7 +964,7 @@ static struct dvb_frontend_ops cx24116_ops = { .diseqc_send_burst = cx24116_diseqc_send_burst, .set_property = cx24116_set_property, - .set_params = cx24116_set_params, + .get_property = cx24116_get_property, .set_frontend = cx24116_set_frontend, }; |