diff options
author | Andrew de Quincy <devnull@localhost> | 2003-11-19 14:32:04 +0000 |
---|---|---|
committer | Andrew de Quincy <devnull@localhost> | 2003-11-19 14:32:04 +0000 |
commit | 03efc557ef5c42cb4e6259997665e6ccc4b29ead (patch) | |
tree | 654d88f1575f4f7d46cde48d8c11ed8109062405 /linux | |
parent | 37bf84d163cddcab88f554aabaacdeb499a0f5ff (diff) | |
download | mediapointer-dvb-s2-03efc557ef5c42cb4e6259997665e6ccc4b29ead.tar.gz mediapointer-dvb-s2-03efc557ef5c42cb4e6259997665e6ccc4b29ead.tar.bz2 |
Whoops, forgot to add a "return 0" at the end of the init function
Diffstat (limited to 'linux')
-rw-r--r-- | linux/drivers/media/dvb/frontends/stv0299.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux/drivers/media/dvb/frontends/stv0299.c b/linux/drivers/media/dvb/frontends/stv0299.c index 6d7ae9517..777d990a2 100644 --- a/linux/drivers/media/dvb/frontends/stv0299.c +++ b/linux/drivers/media/dvb/frontends/stv0299.c @@ -542,6 +542,8 @@ static int stv0299_init (struct dvb_i2c_bus *i2c, int ftype) stv0299_writereg(i2c, 0x34, 0xB3); break; } + + return 0; } |