diff options
author | Steven Toth <stoth@linuxtv.org> | 2008-09-11 09:23:01 -0400 |
---|---|---|
committer | Steven Toth <stoth@linuxtv.org> | 2008-09-11 09:23:01 -0400 |
commit | 991e6d40e8d9894e3dba60323fad2c7b79948788 (patch) | |
tree | 52c1a1169ed7c860882cc7581cd9957c8ff5ce46 /linux/drivers/media/dvb/frontends | |
parent | 68901d77882c18dcb4f6e1fa0309e93893f1a7a0 (diff) | |
download | mediapointer-dvb-s2-991e6d40e8d9894e3dba60323fad2c7b79948788.tar.gz mediapointer-dvb-s2-991e6d40e8d9894e3dba60323fad2c7b79948788.tar.bz2 |
S2API: typedefs replaced, _SEQ_'s removed, fixed 16 command arrays replaced
From: Steven Toth <stoth@linuxtv.org>
After discussion the following changes were made:
1. Removed the typedefs in frontend.h, use structures.
2. In the frontend.h, remove the 16 command limit on the API and
switch to a flexible variable length API. For practical reasons
a #define limits this to 64, this should be discussed.
3. Changed dvb-core ioctl handing to deal with variable sequences
of commands.
tune-v0.0.3.c is required to use this API, it contains the interface changes.
Priority: normal
Signed-off-by: Steven Toth <stoth@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/frontends')
-rw-r--r-- | linux/drivers/media/dvb/frontends/cx24116.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/frontends/cx24116.c b/linux/drivers/media/dvb/frontends/cx24116.c index f150fa24f..9f93930a2 100644 --- a/linux/drivers/media/dvb/frontends/cx24116.c +++ b/linux/drivers/media/dvb/frontends/cx24116.c @@ -796,7 +796,7 @@ static int cx24116_initfe(struct dvb_frontend* fe) return cx24116_diseqc_init(fe); } -static int cx24116_set_property(struct dvb_frontend *fe, dtv_property_t* tvp) +static int cx24116_set_property(struct dvb_frontend *fe, struct dtv_property* tvp) { dprintk("%s(..)\n", __func__); return 0; |