diff options
Diffstat (limited to 'drivers/media/video/pvrusb2')
-rw-r--r-- | drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h b/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h index c79d3a68dbd7..d7a216b41b72 100644 --- a/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h +++ b/drivers/media/video/pvrusb2/pvrusb2-hdw-internal.h | |||
@@ -229,14 +229,14 @@ struct pvr2_hdw { | |||
229 | 229 | ||
230 | /* Bits of state that describe what is going on with various parts | 230 | /* Bits of state that describe what is going on with various parts |
231 | of the driver. */ | 231 | of the driver. */ |
232 | volatile int state_encoder_ok; /* Encoder is operational */ | 232 | int state_encoder_ok; /* Encoder is operational */ |
233 | volatile int state_encoder_run; /* Encoder is running */ | 233 | int state_encoder_run; /* Encoder is running */ |
234 | volatile int state_encoder_config; /* Encoder is configured */ | 234 | int state_encoder_config; /* Encoder is configured */ |
235 | volatile int state_encoder_waitok; /* Encoder pre-wait done */ | 235 | int state_encoder_waitok; /* Encoder pre-wait done */ |
236 | volatile int state_decoder_run; /* Decoder is running */ | 236 | int state_decoder_run; /* Decoder is running */ |
237 | volatile int state_usbstream_run; /* FX2 is streaming */ | 237 | int state_usbstream_run; /* FX2 is streaming */ |
238 | volatile int state_decoder_quiescent; /* Decoder idle for > 50msec */ | 238 | int state_decoder_quiescent; /* Decoder idle for > 50msec */ |
239 | volatile int state_pipeline_config; /* Pipeline is configured */ | 239 | int state_pipeline_config; /* Pipeline is configured */ |
240 | int state_pipeline_req; /* Somebody wants to stream */ | 240 | int state_pipeline_req; /* Somebody wants to stream */ |
241 | int state_pipeline_pause; /* Pipeline must be paused */ | 241 | int state_pipeline_pause; /* Pipeline must be paused */ |
242 | int state_pipeline_idle; /* Pipeline not running */ | 242 | int state_pipeline_idle; /* Pipeline not running */ |