diff options
author | Johannes Stezenbach <devnull@localhost> | 2004-05-01 22:31:51 +0000 |
---|---|---|
committer | Johannes Stezenbach <devnull@localhost> | 2004-05-01 22:31:51 +0000 |
commit | 9556b0639a9b44b10f8cb78857aeb47a305ba40c (patch) | |
tree | e3817db8d18177e323d08e32839da5a86c7b74a6 | |
parent | 011acc8dffe6a7f0050359c5fbc9766077b1d4b7 (diff) | |
download | mediapointer-dvb-s2-9556b0639a9b44b10f8cb78857aeb47a305ba40c.tar.gz mediapointer-dvb-s2-9556b0639a9b44b10f8cb78857aeb47a305ba40c.tar.bz2 |
revert last change, errno is needed for __KERNEL_SYSCALLS__
-rw-r--r-- | linux/drivers/media/dvb/frontends/tda1004x.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linux/drivers/media/dvb/frontends/tda1004x.c b/linux/drivers/media/dvb/frontends/tda1004x.c index 8b4deb02e..18292ae8e 100644 --- a/linux/drivers/media/dvb/frontends/tda1004x.c +++ b/linux/drivers/media/dvb/frontends/tda1004x.c @@ -188,6 +188,9 @@ static int tda10045h_fwinfo_count = sizeof(tda10045h_fwinfo) / sizeof(struct fwi static struct fwinfo tda10046h_fwinfo[] = { {.file_size = 286720,.fw_offset = 0x3c4f9,.fw_size = 24479} }; static int tda10046h_fwinfo_count = sizeof(tda10046h_fwinfo) / sizeof(struct fwinfo); +static int errno; + + static int tda1004x_write_byte(struct dvb_i2c_bus *i2c, struct tda1004x_state *tda_state, int reg, int data) { int ret; |