diff options
author | Abylay Ospan <aospan@netup.ru> | 2009-03-18 00:13:52 +0300 |
---|---|---|
committer | Abylay Ospan <aospan@netup.ru> | 2009-03-18 00:13:52 +0300 |
commit | 1240f4399ff2f3a7bd5c82ade669cdb388809dda (patch) | |
tree | 22a7839bb4debb1adc3d63ec9190a68090077692 /linux | |
parent | aebdd9e3f65e084f513eea41a8b37444f4e99cc6 (diff) | |
download | mediapointer-dvb-s2-1240f4399ff2f3a7bd5c82ade669cdb388809dda.tar.gz mediapointer-dvb-s2-1240f4399ff2f3a7bd5c82ade669cdb388809dda.tar.bz2 |
Bug fix in NetUP: restore high address lines in CI
From: Abylay Ospan <aospan@netup.ru>
CI high address lines disappears due to wrong data type used.
Patch to fix it.
Signed-off-by: Abylay Ospan <aospan@netup.ru>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/video/cx23885/cimax2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx23885/cimax2.c b/linux/drivers/media/video/cx23885/cimax2.c index 193d9b4cc..0e29f97f3 100644 --- a/linux/drivers/media/video/cx23885/cimax2.c +++ b/linux/drivers/media/video/cx23885/cimax2.c @@ -157,7 +157,7 @@ int netup_ci_get_mem(struct cx23885_dev *dev) } int netup_ci_op_cam(struct dvb_ca_en50221 *en50221, int slot, - u8 flag, u8 read, u8 addr, u8 data) + u8 flag, u8 read, int addr, u8 data) { struct netup_ci_state *state = en50221->data; struct cx23885_tsport *port = state->priv; |