diff options
| author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-25 00:49:24 -0400 |
|---|---|---|
| committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-26 08:29:55 -0400 |
| commit | a45e0b45e52adb10634112b338dfb3e66a83de31 (patch) | |
| tree | 6d37532e3dcbffe2be848d7cbca7dc7b4b6aa46a | |
| parent | d0d14226b94546a0054ded495157aa1cb41a7259 (diff) | |
V4L/DVB (7739): mt312.h: dubious one-bit signed bitfield
Make it unsigned (0/1) rather than signed (0/-1).
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
| -rw-r--r-- | drivers/media/dvb/frontends/mt312.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/mt312.h b/drivers/media/dvb/frontends/mt312.h index 96338f0c4dd4..de796eab3911 100644 --- a/drivers/media/dvb/frontends/mt312.h +++ b/drivers/media/dvb/frontends/mt312.h | |||
| @@ -33,7 +33,7 @@ struct mt312_config { | |||
| 33 | u8 demod_address; | 33 | u8 demod_address; |
| 34 | 34 | ||
| 35 | /* inverted voltage setting */ | 35 | /* inverted voltage setting */ |
| 36 | int voltage_inverted:1; | 36 | unsigned int voltage_inverted:1; |
| 37 | }; | 37 | }; |
| 38 | 38 | ||
| 39 | #if defined(CONFIG_DVB_MT312) || (defined(CONFIG_DVB_MT312_MODULE) && defined(MODULE)) | 39 | #if defined(CONFIG_DVB_MT312) || (defined(CONFIG_DVB_MT312_MODULE) && defined(MODULE)) |
