diff options
author | Mike Isely <isely@pobox.com> | 2008-02-03 17:46:16 -0600 |
---|---|---|
committer | Mike Isely <isely@pobox.com> | 2008-02-03 17:46:16 -0600 |
commit | c7200b4f826eb632eb0a22e9cfa45d97a579e801 (patch) | |
tree | eaca7a6a8b1a0b6273bef80beaa7707647a063e5 /linux/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h | |
parent | 677ffa058f4e5029cb3e7b6ff7ab836d5145cdd1 (diff) | |
download | mediapointer-dvb-s2-c7200b4f826eb632eb0a22e9cfa45d97a579e801.tar.gz mediapointer-dvb-s2-c7200b4f826eb632eb0a22e9cfa45d97a579e801.tar.bz2 |
pvrusb2: add DVB API framework
From: Michael Krufky <mkrufky@linuxtv.org>
Add basic framework for the DVB API. This is enough to control the
tuner & demod of the digital frontend, but the stream & buffer handling
is still missing.
Additional note from Mike Isely <isely@pobox.com> - also, since these
changes are still very experimental arrange for DVB changes to be
compiled in via new CONFIG_VIDEO_PVRUSB2_DVB option, for now.
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mike Isely <isely@pobox.com>
Diffstat (limited to 'linux/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h')
-rw-r--r-- | linux/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linux/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h b/linux/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h index 631973652..cdfe11c74 100644 --- a/linux/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h +++ b/linux/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h @@ -45,6 +45,7 @@ #include "pvrusb2-io.h" #include <media/cx2341x.h> #include "pvrusb2-devattr.h" +#include "pvrusb2-dvb.h" /* Legal values for PVR2_CID_HSM */ #define PVR2_CVAL_HSM_FAIL 0 @@ -389,6 +390,8 @@ struct pvr2_hdw { struct pvr2_ctrl *controls; unsigned int control_cnt; + + struct pvr2_dvb_adapter dvb; }; /* This function gets the current frequency */ |