Commit 7bcfdf0f authored by Daniel Glöckner's avatar Daniel Glöckner Committed by Mauro Carvalho Chehab

[media] tvaudio: rename getmode and setmode

This is basically s/getmode/getrxsubchans/ and s/setmode/setaudmode/
with some whitespace adjustment in affected lines to please the eye.
The rename is done to point out their relation to the rxsubchans and
audmode fields of struct v4l2_tuner.

I also corrected a commented out call to v4l_dbg in one of the lines.
Signed-off-by: default avatarDaniel Glöckner <daniel-gl@gmx.net>
Acked-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent 3f7c0a69
...@@ -59,8 +59,8 @@ struct CHIPSTATE; ...@@ -59,8 +59,8 @@ struct CHIPSTATE;
typedef int (*getvalue)(int); typedef int (*getvalue)(int);
typedef int (*checkit)(struct CHIPSTATE*); typedef int (*checkit)(struct CHIPSTATE*);
typedef int (*initialize)(struct CHIPSTATE*); typedef int (*initialize)(struct CHIPSTATE*);
typedef int (*getmode)(struct CHIPSTATE*); typedef int (*getrxsubchans)(struct CHIPSTATE *);
typedef void (*setmode)(struct CHIPSTATE*, int mode); typedef void (*setaudmode)(struct CHIPSTATE*, int mode);
/* i2c command */ /* i2c command */
typedef struct AUDIOCMD { typedef struct AUDIOCMD {
...@@ -96,8 +96,8 @@ struct CHIPDESC { ...@@ -96,8 +96,8 @@ struct CHIPDESC {
getvalue volfunc,treblefunc,bassfunc; getvalue volfunc,treblefunc,bassfunc;
/* get/set mode */ /* get/set mode */
getmode getmode; getrxsubchans getrxsubchans;
setmode setmode; setaudmode setaudmode;
/* input switch register + values for v4l inputs */ /* input switch register + values for v4l inputs */
int inputreg; int inputreg;
...@@ -306,7 +306,7 @@ static int chip_thread(void *data) ...@@ -306,7 +306,7 @@ static int chip_thread(void *data)
continue; continue;
/* have a look what's going on */ /* have a look what's going on */
mode = desc->getmode(chip); mode = desc->getrxsubchans(chip);
if (mode == chip->prevmode) if (mode == chip->prevmode)
continue; continue;
...@@ -340,7 +340,7 @@ static int chip_thread(void *data) ...@@ -340,7 +340,7 @@ static int chip_thread(void *data)
else if (mode & V4L2_TUNER_SUB_STEREO) else if (mode & V4L2_TUNER_SUB_STEREO)
selected = V4L2_TUNER_MODE_STEREO; selected = V4L2_TUNER_MODE_STEREO;
} }
desc->setmode(chip, selected); desc->setaudmode(chip, selected);
/* schedule next check */ /* schedule next check */
mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000)); mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
...@@ -373,7 +373,7 @@ static int chip_thread(void *data) ...@@ -373,7 +373,7 @@ static int chip_thread(void *data)
#define TDA9840_TEST_INT1SN 0x1 /* Integration time 0.5s when set */ #define TDA9840_TEST_INT1SN 0x1 /* Integration time 0.5s when set */
#define TDA9840_TEST_INTFU 0x02 /* Disables integrator function */ #define TDA9840_TEST_INTFU 0x02 /* Disables integrator function */
static int tda9840_getmode(struct CHIPSTATE *chip) static int tda9840_getrxsubchans(struct CHIPSTATE *chip)
{ {
struct v4l2_subdev *sd = &chip->sd; struct v4l2_subdev *sd = &chip->sd;
int val, mode; int val, mode;
...@@ -385,12 +385,13 @@ static int tda9840_getmode(struct CHIPSTATE *chip) ...@@ -385,12 +385,13 @@ static int tda9840_getmode(struct CHIPSTATE *chip)
if (val & TDA9840_ST_STEREO) if (val & TDA9840_ST_STEREO)
mode = V4L2_TUNER_SUB_STEREO; mode = V4L2_TUNER_SUB_STEREO;
v4l2_dbg(1, debug, sd, "tda9840_getmode(): raw chip read: %d, return: %d\n", v4l2_dbg(1, debug, sd,
"tda9840_getrxsubchans(): raw chip read: %d, return: %d\n",
val, mode); val, mode);
return mode; return mode;
} }
static void tda9840_setmode(struct CHIPSTATE *chip, int mode) static void tda9840_setaudmode(struct CHIPSTATE *chip, int mode)
{ {
int update = 1; int update = 1;
int t = chip->shadow.bytes[TDA9840_SW + 1] & ~0x7e; int t = chip->shadow.bytes[TDA9840_SW + 1] & ~0x7e;
...@@ -532,7 +533,7 @@ static int tda9855_volume(int val) { return val/0x2e8+0x27; } ...@@ -532,7 +533,7 @@ static int tda9855_volume(int val) { return val/0x2e8+0x27; }
static int tda9855_bass(int val) { return val/0xccc+0x06; } static int tda9855_bass(int val) { return val/0xccc+0x06; }
static int tda9855_treble(int val) { return (val/0x1c71+0x3)<<1; } static int tda9855_treble(int val) { return (val/0x1c71+0x3)<<1; }
static int tda985x_getmode(struct CHIPSTATE *chip) static int tda985x_getrxsubchans(struct CHIPSTATE *chip)
{ {
int mode, val; int mode, val;
...@@ -547,7 +548,7 @@ static int tda985x_getmode(struct CHIPSTATE *chip) ...@@ -547,7 +548,7 @@ static int tda985x_getmode(struct CHIPSTATE *chip)
return mode; return mode;
} }
static void tda985x_setmode(struct CHIPSTATE *chip, int mode) static void tda985x_setaudmode(struct CHIPSTATE *chip, int mode)
{ {
int update = 1; int update = 1;
int c6 = chip->shadow.bytes[TDA985x_C6+1] & 0x3f; int c6 = chip->shadow.bytes[TDA985x_C6+1] & 0x3f;
...@@ -692,7 +693,7 @@ static void tda985x_setmode(struct CHIPSTATE *chip, int mode) ...@@ -692,7 +693,7 @@ static void tda985x_setmode(struct CHIPSTATE *chip, int mode)
#define TDA9873_STEREO 2 /* Stereo sound is identified */ #define TDA9873_STEREO 2 /* Stereo sound is identified */
#define TDA9873_DUAL 4 /* Dual sound is identified */ #define TDA9873_DUAL 4 /* Dual sound is identified */
static int tda9873_getmode(struct CHIPSTATE *chip) static int tda9873_getrxsubchans(struct CHIPSTATE *chip)
{ {
struct v4l2_subdev *sd = &chip->sd; struct v4l2_subdev *sd = &chip->sd;
int val,mode; int val,mode;
...@@ -703,24 +704,29 @@ static int tda9873_getmode(struct CHIPSTATE *chip) ...@@ -703,24 +704,29 @@ static int tda9873_getmode(struct CHIPSTATE *chip)
mode = V4L2_TUNER_SUB_STEREO; mode = V4L2_TUNER_SUB_STEREO;
if (val & TDA9873_DUAL) if (val & TDA9873_DUAL)
mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2; mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
v4l2_dbg(1, debug, sd, "tda9873_getmode(): raw chip read: %d, return: %d\n", v4l2_dbg(1, debug, sd,
"tda9873_getrxsubchans(): raw chip read: %d, return: %d\n",
val, mode); val, mode);
return mode; return mode;
} }
static void tda9873_setmode(struct CHIPSTATE *chip, int mode) static void tda9873_setaudmode(struct CHIPSTATE *chip, int mode)
{ {
struct v4l2_subdev *sd = &chip->sd; struct v4l2_subdev *sd = &chip->sd;
int sw_data = chip->shadow.bytes[TDA9873_SW+1] & ~ TDA9873_TR_MASK; int sw_data = chip->shadow.bytes[TDA9873_SW+1] & ~ TDA9873_TR_MASK;
/* int adj_data = chip->shadow.bytes[TDA9873_AD+1] ; */ /* int adj_data = chip->shadow.bytes[TDA9873_AD+1] ; */
if ((sw_data & TDA9873_INP_MASK) != TDA9873_INTERNAL) { if ((sw_data & TDA9873_INP_MASK) != TDA9873_INTERNAL) {
v4l2_dbg(1, debug, sd, "tda9873_setmode(): external input\n"); v4l2_dbg(1, debug, sd,
"tda9873_setaudmode(): external input\n");
return; return;
} }
v4l2_dbg(1, debug, sd, "tda9873_setmode(): chip->shadow.bytes[%d] = %d\n", TDA9873_SW+1, chip->shadow.bytes[TDA9873_SW+1]); v4l2_dbg(1, debug, sd,
v4l2_dbg(1, debug, sd, "tda9873_setmode(): sw_data = %d\n", sw_data); "tda9873_setaudmode(): chip->shadow.bytes[%d] = %d\n",
TDA9873_SW+1, chip->shadow.bytes[TDA9873_SW+1]);
v4l2_dbg(1, debug, sd, "tda9873_setaudmode(): sw_data = %d\n",
sw_data);
switch (mode) { switch (mode) {
case V4L2_TUNER_MODE_MONO: case V4L2_TUNER_MODE_MONO:
...@@ -743,7 +749,8 @@ static void tda9873_setmode(struct CHIPSTATE *chip, int mode) ...@@ -743,7 +749,8 @@ static void tda9873_setmode(struct CHIPSTATE *chip, int mode)
} }
chip_write(chip, TDA9873_SW, sw_data); chip_write(chip, TDA9873_SW, sw_data);
v4l2_dbg(1, debug, sd, "tda9873_setmode(): req. mode %d; chip_write: %d\n", v4l2_dbg(1, debug, sd,
"tda9873_setaudmode(): req. mode %d; chip_write: %d\n",
mode, sw_data); mode, sw_data);
} }
...@@ -889,7 +896,7 @@ static int tda9874a_setup(struct CHIPSTATE *chip) ...@@ -889,7 +896,7 @@ static int tda9874a_setup(struct CHIPSTATE *chip)
return 1; return 1;
} }
static int tda9874a_getmode(struct CHIPSTATE *chip) static int tda9874a_getrxsubchans(struct CHIPSTATE *chip)
{ {
struct v4l2_subdev *sd = &chip->sd; struct v4l2_subdev *sd = &chip->sd;
int dsr,nsr,mode; int dsr,nsr,mode;
...@@ -928,12 +935,13 @@ static int tda9874a_getmode(struct CHIPSTATE *chip) ...@@ -928,12 +935,13 @@ static int tda9874a_getmode(struct CHIPSTATE *chip)
mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2; mode |= V4L2_TUNER_SUB_LANG1 | V4L2_TUNER_SUB_LANG2;
} }
v4l2_dbg(1, debug, sd, "tda9874a_getmode(): DSR=0x%X, NSR=0x%X, NECR=0x%X, return: %d.\n", v4l2_dbg(1, debug, sd,
"tda9874a_getrxsubchans(): DSR=0x%X, NSR=0x%X, NECR=0x%X, return: %d.\n",
dsr, nsr, necr, mode); dsr, nsr, necr, mode);
return mode; return mode;
} }
static void tda9874a_setmode(struct CHIPSTATE *chip, int mode) static void tda9874a_setaudmode(struct CHIPSTATE *chip, int mode)
{ {
struct v4l2_subdev *sd = &chip->sd; struct v4l2_subdev *sd = &chip->sd;
...@@ -979,7 +987,8 @@ static void tda9874a_setmode(struct CHIPSTATE *chip, int mode) ...@@ -979,7 +987,8 @@ static void tda9874a_setmode(struct CHIPSTATE *chip, int mode)
chip_write(chip, TDA9874A_AOSR, aosr); chip_write(chip, TDA9874A_AOSR, aosr);
chip_write(chip, TDA9874A_MDACOSR, mdacosr); chip_write(chip, TDA9874A_MDACOSR, mdacosr);
v4l2_dbg(1, debug, sd, "tda9874a_setmode(): req. mode %d; AOSR=0x%X, MDACOSR=0x%X.\n", v4l2_dbg(1, debug, sd,
"tda9874a_setaudmode(): req. mode %d; AOSR=0x%X, MDACOSR=0x%X.\n",
mode, aosr, mdacosr); mode, aosr, mdacosr);
} else { /* dic == 0x07 */ } else { /* dic == 0x07 */
...@@ -1017,7 +1026,8 @@ static void tda9874a_setmode(struct CHIPSTATE *chip, int mode) ...@@ -1017,7 +1026,8 @@ static void tda9874a_setmode(struct CHIPSTATE *chip, int mode)
chip_write(chip, TDA9874A_FMMR, fmmr); chip_write(chip, TDA9874A_FMMR, fmmr);
chip_write(chip, TDA9874A_AOSR, aosr); chip_write(chip, TDA9874A_AOSR, aosr);
v4l2_dbg(1, debug, sd, "tda9874a_setmode(): req. mode %d; FMMR=0x%X, AOSR=0x%X.\n", v4l2_dbg(1, debug, sd,
"tda9874a_setaudmode(): req. mode %d; FMMR=0x%X, AOSR=0x%X.\n",
mode, fmmr, aosr); mode, fmmr, aosr);
} }
} }
...@@ -1262,7 +1272,7 @@ static int tea6320_initialize(struct CHIPSTATE * chip) ...@@ -1262,7 +1272,7 @@ static int tea6320_initialize(struct CHIPSTATE * chip)
static int tda8425_shift10(int val) { return (val >> 10) | 0xc0; } static int tda8425_shift10(int val) { return (val >> 10) | 0xc0; }
static int tda8425_shift12(int val) { return (val >> 12) | 0xf0; } static int tda8425_shift12(int val) { return (val >> 12) | 0xf0; }
static void tda8425_setmode(struct CHIPSTATE *chip, int mode) static void tda8425_setaudmode(struct CHIPSTATE *chip, int mode)
{ {
int s1 = chip->shadow.bytes[TDA8425_S1+1] & 0xe1; int s1 = chip->shadow.bytes[TDA8425_S1+1] & 0xe1;
...@@ -1341,7 +1351,7 @@ static void tda8425_setmode(struct CHIPSTATE *chip, int mode) ...@@ -1341,7 +1351,7 @@ static void tda8425_setmode(struct CHIPSTATE *chip, int mode)
* stereo L L * stereo L L
* BIL H L * BIL H L
*/ */
static int ta8874z_getmode(struct CHIPSTATE *chip) static int ta8874z_getrxsubchans(struct CHIPSTATE *chip)
{ {
int val, mode; int val, mode;
...@@ -1352,7 +1362,9 @@ static int ta8874z_getmode(struct CHIPSTATE *chip) ...@@ -1352,7 +1362,9 @@ static int ta8874z_getmode(struct CHIPSTATE *chip)
}else if (!(val & TA8874Z_B0)){ }else if (!(val & TA8874Z_B0)){
mode = V4L2_TUNER_SUB_STEREO; mode = V4L2_TUNER_SUB_STEREO;
} }
/* v4l_dbg(1, debug, chip->c, "ta8874z_getmode(): raw chip read: 0x%02x, return: 0x%02x\n", val, mode); */ /* v4l2_dbg(1, debug, &chip->sd,
"ta8874z_getrxsubchans(): raw chip read: 0x%02x, return: 0x%02x\n",
val, mode); */
return mode; return mode;
} }
...@@ -1362,13 +1374,13 @@ static audiocmd ta8874z_main = {2, { 0, TA8874Z_SEPARATION_DEFAULT}}; ...@@ -1362,13 +1374,13 @@ static audiocmd ta8874z_main = {2, { 0, TA8874Z_SEPARATION_DEFAULT}};
static audiocmd ta8874z_sub = {2, { TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}}; static audiocmd ta8874z_sub = {2, { TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}};
static audiocmd ta8874z_both = {2, { TA8874Z_MODE_MAIN | TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}}; static audiocmd ta8874z_both = {2, { TA8874Z_MODE_MAIN | TA8874Z_MODE_SUB, TA8874Z_SEPARATION_DEFAULT}};
static void ta8874z_setmode(struct CHIPSTATE *chip, int mode) static void ta8874z_setaudmode(struct CHIPSTATE *chip, int mode)
{ {
struct v4l2_subdev *sd = &chip->sd; struct v4l2_subdev *sd = &chip->sd;
int update = 1; int update = 1;
audiocmd *t = NULL; audiocmd *t = NULL;
v4l2_dbg(1, debug, sd, "ta8874z_setmode(): mode: 0x%02x\n", mode); v4l2_dbg(1, debug, sd, "ta8874z_setaudmode(): mode: 0x%02x\n", mode);
switch(mode){ switch(mode){
case V4L2_TUNER_MODE_MONO: case V4L2_TUNER_MODE_MONO:
...@@ -1442,8 +1454,8 @@ static struct CHIPDESC chiplist[] = { ...@@ -1442,8 +1454,8 @@ static struct CHIPDESC chiplist[] = {
/* callbacks */ /* callbacks */
.checkit = tda9840_checkit, .checkit = tda9840_checkit,
.getmode = tda9840_getmode, .getrxsubchans = tda9840_getrxsubchans,
.setmode = tda9840_setmode, .setaudmode = tda9840_setaudmode,
.init = { 2, { TDA9840_TEST, TDA9840_TEST_INT1SN .init = { 2, { TDA9840_TEST, TDA9840_TEST_INT1SN
/* ,TDA9840_SW, TDA9840_MONO */} } /* ,TDA9840_SW, TDA9840_MONO */} }
...@@ -1458,8 +1470,8 @@ static struct CHIPDESC chiplist[] = { ...@@ -1458,8 +1470,8 @@ static struct CHIPDESC chiplist[] = {
/* callbacks */ /* callbacks */
.checkit = tda9873_checkit, .checkit = tda9873_checkit,
.getmode = tda9873_getmode, .getrxsubchans = tda9873_getrxsubchans,
.setmode = tda9873_setmode, .setaudmode = tda9873_setaudmode,
.init = { 4, { TDA9873_SW, 0xa4, 0x06, 0x03 } }, .init = { 4, { TDA9873_SW, 0xa4, 0x06, 0x03 } },
.inputreg = TDA9873_SW, .inputreg = TDA9873_SW,
...@@ -1478,8 +1490,8 @@ static struct CHIPDESC chiplist[] = { ...@@ -1478,8 +1490,8 @@ static struct CHIPDESC chiplist[] = {
/* callbacks */ /* callbacks */
.initialize = tda9874a_initialize, .initialize = tda9874a_initialize,
.checkit = tda9874a_checkit, .checkit = tda9874a_checkit,
.getmode = tda9874a_getmode, .getrxsubchans = tda9874a_getrxsubchans,
.setmode = tda9874a_setmode, .setaudmode = tda9874a_setaudmode,
}, },
{ {
.name = "tda9875", .name = "tda9875",
...@@ -1508,8 +1520,8 @@ static struct CHIPDESC chiplist[] = { ...@@ -1508,8 +1520,8 @@ static struct CHIPDESC chiplist[] = {
.addr_hi = I2C_ADDR_TDA985x_H >> 1, .addr_hi = I2C_ADDR_TDA985x_H >> 1,
.registers = 11, .registers = 11,
.getmode = tda985x_getmode, .getrxsubchans = tda985x_getrxsubchans,
.setmode = tda985x_setmode, .setaudmode = tda985x_setaudmode,
.init = { 8, { TDA9850_C4, 0x08, 0x08, TDA985x_STEREO, 0x07, 0x10, 0x10, 0x03 } } .init = { 8, { TDA9850_C4, 0x08, 0x08, TDA985x_STEREO, 0x07, 0x10, 0x10, 0x03 } }
}, },
...@@ -1530,8 +1542,8 @@ static struct CHIPDESC chiplist[] = { ...@@ -1530,8 +1542,8 @@ static struct CHIPDESC chiplist[] = {
.volfunc = tda9855_volume, .volfunc = tda9855_volume,
.bassfunc = tda9855_bass, .bassfunc = tda9855_bass,
.treblefunc = tda9855_treble, .treblefunc = tda9855_treble,
.getmode = tda985x_getmode, .getrxsubchans = tda985x_getrxsubchans,
.setmode = tda985x_setmode, .setaudmode = tda985x_setaudmode,
.init = { 12, { 0, 0x6f, 0x6f, 0x0e, 0x07<<1, 0x8<<2, .init = { 12, { 0, 0x6f, 0x6f, 0x0e, 0x07<<1, 0x8<<2,
TDA9855_MUTE | TDA9855_AVL | TDA9855_LOUD | TDA9855_INT, TDA9855_MUTE | TDA9855_AVL | TDA9855_LOUD | TDA9855_INT,
...@@ -1612,7 +1624,7 @@ static struct CHIPDESC chiplist[] = { ...@@ -1612,7 +1624,7 @@ static struct CHIPDESC chiplist[] = {
.volfunc = tda8425_shift10, .volfunc = tda8425_shift10,
.bassfunc = tda8425_shift12, .bassfunc = tda8425_shift12,
.treblefunc = tda8425_shift12, .treblefunc = tda8425_shift12,
.setmode = tda8425_setmode, .setaudmode = tda8425_setaudmode,
.inputreg = TDA8425_S1, .inputreg = TDA8425_S1,
.inputmap = { TDA8425_S1_CH1, TDA8425_S1_CH1, TDA8425_S1_CH1 }, .inputmap = { TDA8425_S1_CH1, TDA8425_S1_CH1, TDA8425_S1_CH1 },
...@@ -1643,8 +1655,8 @@ static struct CHIPDESC chiplist[] = { ...@@ -1643,8 +1655,8 @@ static struct CHIPDESC chiplist[] = {
.registers = 2, .registers = 2,
/* callbacks */ /* callbacks */
.getmode = ta8874z_getmode, .getrxsubchans = ta8874z_getrxsubchans,
.setmode = ta8874z_setmode, .setaudmode = ta8874z_setaudmode,
.init = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}}, .init = {2, { TA8874Z_MONO_SET, TA8874Z_SEPARATION_DEFAULT}},
}, },
...@@ -1840,7 +1852,7 @@ static int tvaudio_s_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt) ...@@ -1840,7 +1852,7 @@ static int tvaudio_s_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
struct CHIPSTATE *chip = to_state(sd); struct CHIPSTATE *chip = to_state(sd);
struct CHIPDESC *desc = chip->desc; struct CHIPDESC *desc = chip->desc;
if (!desc->setmode) if (!desc->setaudmode)
return 0; return 0;
if (chip->radio) if (chip->radio)
return 0; return 0;
...@@ -1860,7 +1872,7 @@ static int tvaudio_s_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt) ...@@ -1860,7 +1872,7 @@ static int tvaudio_s_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
if (chip->thread) if (chip->thread)
wake_up_process(chip->thread); wake_up_process(chip->thread);
else else
desc->setmode(chip, vt->audmode); desc->setaudmode(chip, vt->audmode);
return 0; return 0;
} }
...@@ -1870,13 +1882,13 @@ static int tvaudio_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt) ...@@ -1870,13 +1882,13 @@ static int tvaudio_g_tuner(struct v4l2_subdev *sd, struct v4l2_tuner *vt)
struct CHIPSTATE *chip = to_state(sd); struct CHIPSTATE *chip = to_state(sd);
struct CHIPDESC *desc = chip->desc; struct CHIPDESC *desc = chip->desc;
if (!desc->getmode) if (!desc->getrxsubchans)
return 0; return 0;
if (chip->radio) if (chip->radio)
return 0; return 0;
vt->audmode = chip->audmode; vt->audmode = chip->audmode;
vt->rxsubchans = desc->getmode(chip); vt->rxsubchans = desc->getrxsubchans(chip);
vt->capability = V4L2_TUNER_CAP_STEREO | vt->capability = V4L2_TUNER_CAP_STEREO |
V4L2_TUNER_CAP_LANG1 | V4L2_TUNER_CAP_LANG2; V4L2_TUNER_CAP_LANG1 | V4L2_TUNER_CAP_LANG2;
...@@ -1896,7 +1908,7 @@ static int tvaudio_s_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *fr ...@@ -1896,7 +1908,7 @@ static int tvaudio_s_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *fr
struct CHIPSTATE *chip = to_state(sd); struct CHIPSTATE *chip = to_state(sd);
struct CHIPDESC *desc = chip->desc; struct CHIPDESC *desc = chip->desc;
/* For chips that provide getmode and setmode, and doesn't /* For chips that provide getrxsubchans and setaudmode, and doesn't
automatically follows the stereo carrier, a kthread is automatically follows the stereo carrier, a kthread is
created to set the audio standard. In this case, when then created to set the audio standard. In this case, when then
the video channel is changed, tvaudio starts on MONO mode. the video channel is changed, tvaudio starts on MONO mode.
...@@ -1905,7 +1917,7 @@ static int tvaudio_s_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *fr ...@@ -1905,7 +1917,7 @@ static int tvaudio_s_frequency(struct v4l2_subdev *sd, struct v4l2_frequency *fr
audio carrier. audio carrier.
*/ */
if (chip->thread) { if (chip->thread) {
desc->setmode(chip, V4L2_TUNER_MODE_MONO); desc->setaudmode(chip, V4L2_TUNER_MODE_MONO);
chip->prevmode = -1; /* reset previous mode */ chip->prevmode = -1; /* reset previous mode */
mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000)); mod_timer(&chip->wt, jiffies+msecs_to_jiffies(2000));
} }
...@@ -2048,7 +2060,7 @@ static int tvaudio_probe(struct i2c_client *client, const struct i2c_device_id * ...@@ -2048,7 +2060,7 @@ static int tvaudio_probe(struct i2c_client *client, const struct i2c_device_id *
chip->thread = NULL; chip->thread = NULL;
init_timer(&chip->wt); init_timer(&chip->wt);
if (desc->flags & CHIP_NEED_CHECKMODE) { if (desc->flags & CHIP_NEED_CHECKMODE) {
if (!desc->getmode || !desc->setmode) { if (!desc->getrxsubchans || !desc->setaudmode) {
/* This shouldn't be happen. Warn user, but keep working /* This shouldn't be happen. Warn user, but keep working
without kthread without kthread
*/ */
......
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