For the record, this is us trying to send a command to the tda9887, but we don't see one. In this case the command is "AUDC_SET_RADIO" I believe. It is harmless, but should probably be fixed to not do it unless tda9887 >= 0.

Adam Forsyth wrote:

I meant to say in my last message that I get that error all the time
in my logs to. I don't know what it means, but the radio tuner still
works fine for me.
ivtv: i2c client addr: 0x43 not found for command 27906!
Index: driver/ivtv-fileops.c
===================================================================
--- driver/ivtv-fileops.c       (revision 331)
+++ driver/ivtv-fileops.c       (working copy)
@@ -1538,7 +1538,7 @@
                /* Switch tuner to radio */
                ivtv_tuner(itv, AUDC_SET_RADIO, 0);
                /* Switch IF demodulator to radio */
-               ivtv_tda9887(itv, AUDC_SET_RADIO, 0);
+               if(tda9887 >= 0) ivtv_tda9887(itv, AUDC_SET_RADIO, 0);
                /* Mark that the radio is being used. */
                set_bit(IVTV_F_I_RADIO_USER, &itv->i_flags);
                /* Select radio frequency */

Reply via email to