diff options
Diffstat (limited to 'drivers/media/video/pvrusb2')
-rw-r--r-- | drivers/media/video/pvrusb2/pvrusb2-devattr.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/drivers/media/video/pvrusb2/pvrusb2-devattr.h b/drivers/media/video/pvrusb2/pvrusb2-devattr.h index c2e2b06fe2e0..d016f8b6c70b 100644 --- a/drivers/media/video/pvrusb2/pvrusb2-devattr.h +++ b/drivers/media/video/pvrusb2/pvrusb2-devattr.h | |||
@@ -104,28 +104,28 @@ struct pvr2_device_desc { | |||
104 | unsigned char digital_control_scheme; | 104 | unsigned char digital_control_scheme; |
105 | 105 | ||
106 | /* If set, we don't bother trying to load cx23416 firmware. */ | 106 | /* If set, we don't bother trying to load cx23416 firmware. */ |
107 | int flag_skip_cx23416_firmware:1; | 107 | unsigned int flag_skip_cx23416_firmware:1; |
108 | 108 | ||
109 | /* If set, the encoder must be healthy in order for digital mode to | 109 | /* If set, the encoder must be healthy in order for digital mode to |
110 | work (otherwise we assume that digital streaming will work even | 110 | work (otherwise we assume that digital streaming will work even |
111 | if we fail to locate firmware for the encoder). If the device | 111 | if we fail to locate firmware for the encoder). If the device |
112 | doesn't support digital streaming then this flag has no | 112 | doesn't support digital streaming then this flag has no |
113 | effect. */ | 113 | effect. */ |
114 | int flag_digital_requires_cx23416:1; | 114 | unsigned int flag_digital_requires_cx23416:1; |
115 | 115 | ||
116 | /* Device has a hauppauge eeprom which we can interrogate. */ | 116 | /* Device has a hauppauge eeprom which we can interrogate. */ |
117 | int flag_has_hauppauge_rom:1; | 117 | unsigned int flag_has_hauppauge_rom:1; |
118 | 118 | ||
119 | /* Device does not require a powerup command to be issued. */ | 119 | /* Device does not require a powerup command to be issued. */ |
120 | int flag_no_powerup:1; | 120 | unsigned int flag_no_powerup:1; |
121 | 121 | ||
122 | /* Device has a cx25840 - this enables special additional logic to | 122 | /* Device has a cx25840 - this enables special additional logic to |
123 | handle it. */ | 123 | handle it. */ |
124 | int flag_has_cx25840:1; | 124 | unsigned int flag_has_cx25840:1; |
125 | 125 | ||
126 | /* Device has a wm8775 - this enables special additional logic to | 126 | /* Device has a wm8775 - this enables special additional logic to |
127 | ensure that it is found. */ | 127 | ensure that it is found. */ |
128 | int flag_has_wm8775:1; | 128 | unsigned int flag_has_wm8775:1; |
129 | 129 | ||
130 | /* Device has IR hardware that can be faked into looking like a | 130 | /* Device has IR hardware that can be faked into looking like a |
131 | normal Hauppauge i2c IR receiver. This is currently very | 131 | normal Hauppauge i2c IR receiver. This is currently very |
@@ -135,15 +135,15 @@ struct pvr2_device_desc { | |||
135 | to virtualize the presence of the non-existant IR receiver chip and | 135 | to virtualize the presence of the non-existant IR receiver chip and |
136 | implement the virtual receiver in terms of appropriate FX2 | 136 | implement the virtual receiver in terms of appropriate FX2 |
137 | commands. */ | 137 | commands. */ |
138 | int flag_has_hauppauge_custom_ir:1; | 138 | unsigned int flag_has_hauppauge_custom_ir:1; |
139 | 139 | ||
140 | /* These bits define which kinds of sources the device can handle. | 140 | /* These bits define which kinds of sources the device can handle. |
141 | Note: Digital tuner presence is inferred by the | 141 | Note: Digital tuner presence is inferred by the |
142 | digital_control_scheme enumeration. */ | 142 | digital_control_scheme enumeration. */ |
143 | int flag_has_fmradio:1; /* Has FM radio receiver */ | 143 | unsigned int flag_has_fmradio:1; /* Has FM radio receiver */ |
144 | int flag_has_analogtuner:1; /* Has analog tuner */ | 144 | unsigned int flag_has_analogtuner:1; /* Has analog tuner */ |
145 | int flag_has_composite:1; /* Has composite input */ | 145 | unsigned int flag_has_composite:1; /* Has composite input */ |
146 | int flag_has_svideo:1; /* Has s-video input */ | 146 | unsigned int flag_has_svideo:1; /* Has s-video input */ |
147 | }; | 147 | }; |
148 | 148 | ||
149 | extern struct usb_device_id pvr2_device_table[]; | 149 | extern struct usb_device_id pvr2_device_table[]; |