summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/drivers/tuner/tea5760uk.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/drivers/tuner/tea5760uk.c b/firmware/drivers/tuner/tea5760uk.c
index e3496a1..28194b1 100644
--- a/firmware/drivers/tuner/tea5760uk.c
+++ b/firmware/drivers/tuner/tea5760uk.c
@@ -173,6 +173,7 @@ void tea5760_init(void)
unsigned short manid, chipid;
/* read all registers */
+ tuner_power(true);
fmradio_i2c_read(I2C_ADR, buf, sizeof(buf));
/* check device id */
@@ -192,6 +193,7 @@ void tea5760_init(void)
tea5760_set_clear(3, (1<<0), 1); /* stereo noise cancellation on */
fmradio_i2c_write(I2C_ADR, write_bytes, sizeof(write_bytes));
}
+ tuner_power(false);
}
void tea5760_dbg_info(struct tea5760_dbg_info *info)