Browse Source

DVB (2431): Fixed dishnetwork support for Nexus-S rev 2.3

- Fixed dishnetwork support for Nexus-S rev 2.3

Signed-off-by: Oliver Endriss <o.endriss@gmx.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Oliver Endriss 19 năm trước cách đây
mục cha
commit
eb3daf3c5a
1 tập tin đã thay đổi với 3 bổ sung1 xóa
  1. 3 1
      drivers/media/dvb/ttpci/av7110.c

+ 3 - 1
drivers/media/dvb/ttpci/av7110.c

@@ -2314,8 +2314,10 @@ static int frontend_init(struct av7110 *av7110)
 		case 0x000E: /* Hauppauge/TT Nexus-S rev 2.3 */
 			/* ALPS BSBE1 */
 			av7110->fe = stv0299_attach(&alps_bsbe1_config, &av7110->i2c_adap);
-			if (av7110->fe)
+			if (av7110->fe) {
 				av7110->fe->ops->set_voltage = lnbp21_set_voltage;
+				av7110->fe->ops->dishnetwork_send_legacy_command = NULL;
+			}
 			break;
 		}
 	}