diff options
author | Mike Isely <isely@pobox.com> | 2006-03-25 16:40:16 -0600 |
---|---|---|
committer | Mike Isely <isely@pobox.com> | 2006-03-25 16:40:16 -0600 |
commit | 22184ee779d37f2c64b08ea427d939f0e2d58b37 (patch) | |
tree | adfb0a1119f17af1ea3cd344bbf04a51f128a766 /linux/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h | |
parent | acea6b43b12c290328f857fa981b2c8b3d598b45 (diff) | |
download | mediapointer-dvb-s2-22184ee779d37f2c64b08ea427d939f0e2d58b37.tar.gz mediapointer-dvb-s2-22184ee779d37f2c64b08ea427d939f0e2d58b37.tar.bz2 |
Implement method in pvrusb2 to force the decoder to reset
From: Mike Isely <isely@pobox.com>
This change threads logic through the pvrusb2 to make it possible to
command the decoder chip to reset itself. The method is
decoder-agnostic; the part of the pvrusb2 which control's that chip's
module has to provide the final hook. This just lays the foundation.
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 | 1 |
1 files changed, 1 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 1b161773b..05e44385b 100644 --- a/linux/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h +++ b/linux/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h @@ -74,6 +74,7 @@ struct pvr2_decoder_ctrl { void (*detach)(void *); void (*enable)(void *,int); int (*tuned)(void *); + void (*force_reset)(void *); }; #define PVR2_I2C_PEND_DETECT 0x01 /* Need to detect a client type */ |