Commit 83c1b6ce authored by Antti Palosaari's avatar Antti Palosaari Committed by Mauro Carvalho Chehab

[media] em28xx: switch PCTV 461e to ts2020 driver

Change ts2022 driver to ts2020 driver as ts2020 driver now supports
both models.
Signed-off-by: default avatarAntti Palosaari <crope@iki.fi>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@osg.samsung.com>
parent dc245a5f
...@@ -55,7 +55,7 @@ config VIDEO_EM28XX_DVB ...@@ -55,7 +55,7 @@ config VIDEO_EM28XX_DVB
select MEDIA_TUNER_TDA18271 if MEDIA_SUBDRV_AUTOSELECT select MEDIA_TUNER_TDA18271 if MEDIA_SUBDRV_AUTOSELECT
select MEDIA_TUNER_TDA18212 if MEDIA_SUBDRV_AUTOSELECT select MEDIA_TUNER_TDA18212 if MEDIA_SUBDRV_AUTOSELECT
select DVB_M88DS3103 if MEDIA_SUBDRV_AUTOSELECT select DVB_M88DS3103 if MEDIA_SUBDRV_AUTOSELECT
select MEDIA_TUNER_M88TS2022 if MEDIA_SUBDRV_AUTOSELECT select DVB_TS2020 if MEDIA_SUBDRV_AUTOSELECT
select DVB_DRX39XYJ if MEDIA_SUBDRV_AUTOSELECT select DVB_DRX39XYJ if MEDIA_SUBDRV_AUTOSELECT
select DVB_SI2168 if MEDIA_SUBDRV_AUTOSELECT select DVB_SI2168 if MEDIA_SUBDRV_AUTOSELECT
select MEDIA_TUNER_SI2157 if MEDIA_SUBDRV_AUTOSELECT select MEDIA_TUNER_SI2157 if MEDIA_SUBDRV_AUTOSELECT
......
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
#include "qt1010.h" #include "qt1010.h"
#include "mb86a20s.h" #include "mb86a20s.h"
#include "m88ds3103.h" #include "m88ds3103.h"
#include "m88ts2022.h" #include "ts2020.h"
#include "si2168.h" #include "si2168.h"
#include "si2157.h" #include "si2157.h"
...@@ -1492,8 +1492,7 @@ static int em28xx_dvb_init(struct em28xx *dev) ...@@ -1492,8 +1492,7 @@ static int em28xx_dvb_init(struct em28xx *dev)
struct i2c_adapter *i2c_adapter; struct i2c_adapter *i2c_adapter;
struct i2c_client *client; struct i2c_client *client;
struct i2c_board_info info; struct i2c_board_info info;
struct m88ts2022_config m88ts2022_config = { struct ts2020_config ts2020_config = {
.clock = 27000000,
}; };
memset(&info, 0, sizeof(struct i2c_board_info)); memset(&info, 0, sizeof(struct i2c_board_info));
...@@ -1508,11 +1507,11 @@ static int em28xx_dvb_init(struct em28xx *dev) ...@@ -1508,11 +1507,11 @@ static int em28xx_dvb_init(struct em28xx *dev)
} }
/* attach tuner */ /* attach tuner */
m88ts2022_config.fe = dvb->fe[0]; ts2020_config.fe = dvb->fe[0];
strlcpy(info.type, "m88ts2022", I2C_NAME_SIZE); strlcpy(info.type, "ts2022", I2C_NAME_SIZE);
info.addr = 0x60; info.addr = 0x60;
info.platform_data = &m88ts2022_config; info.platform_data = &ts2020_config;
request_module("m88ts2022"); request_module("ts2020");
client = i2c_new_device(i2c_adapter, &info); client = i2c_new_device(i2c_adapter, &info);
if (client == NULL || client->dev.driver == NULL) { if (client == NULL || client->dev.driver == NULL) {
dvb_frontend_detach(dvb->fe[0]); dvb_frontend_detach(dvb->fe[0]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment