diff options
author | Devin Heitmueller <devin.heitmueller@gmail.com> | 2008-04-17 20:41:16 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-24 13:09:41 -0400 |
commit | 83244025e70aadd7e8baad520decf5d53d534d8f (patch) | |
tree | d2566cc2a2156d8a563287e16fd391601bde8db0 /drivers/media/video/tuner-xc2028.c | |
parent | 6ea54d938b6f81baa0952a8b15d3e67e6c268b8f (diff) |
V4L/DVB (7608): em28xx-dvb: Some cleanups and fixes
em28xx-dvb.c:
- Remove unneeded xc3028_ctrl structure. The driver automatically preserves
the previous value
tuner-xc2028.c:
- Make the return type for xc2028_get_reg signed, since all of the callers
are looking for "< 0" to detect errors.
Signed-off-by: Devin Heitmueller <devin.heitmueller@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/tuner-xc2028.c')
-rw-r--r-- | drivers/media/video/tuner-xc2028.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/tuner-xc2028.c b/drivers/media/video/tuner-xc2028.c index 95d5922eac95..9dd688ec3cff 100644 --- a/drivers/media/video/tuner-xc2028.c +++ b/drivers/media/video/tuner-xc2028.c | |||
@@ -130,7 +130,7 @@ struct xc2028_data { | |||
130 | _rc; \ | 130 | _rc; \ |
131 | }) | 131 | }) |
132 | 132 | ||
133 | static unsigned int xc2028_get_reg(struct xc2028_data *priv, u16 reg, u16 *val) | 133 | static int xc2028_get_reg(struct xc2028_data *priv, u16 reg, u16 *val) |
134 | { | 134 | { |
135 | unsigned char buf[2]; | 135 | unsigned char buf[2]; |
136 | unsigned char ibuf[2]; | 136 | unsigned char ibuf[2]; |