diff options
author | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2018-03-03 09:53:32 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@s-opensource.com> | 2018-03-06 05:15:02 -0500 |
commit | ad05ff091f004b621da1bb17f66181ef0ef4da0c (patch) | |
tree | 8a2357de1f157fb6eacde08408a2b6a42fc29aa9 /drivers/media/pci/cx88 | |
parent | ad32495b1513fe8cbab717411b9cd8d2d285de30 (diff) |
media: s5h14*.h: fix typos for CONTINUOUS
There is a typo at the several s5h14*.h headers: continuous were
spelled incorrectly.
Fix it with this script:
for i in $(git grep -l S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK); do
sed s,S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK,S5H1409_MPEGTIMING_CONTINUOUS_NONINVERTING_CLOCK,g -i $i
done
for i in $(git grep -l -i continous drivers/media); do sed s,CONTINOUS,CONTINUOUS,g -i $i; done
Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Diffstat (limited to 'drivers/media/pci/cx88')
-rw-r--r-- | drivers/media/pci/cx88/cx88-dvb.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/pci/cx88/cx88-dvb.c b/drivers/media/pci/cx88/cx88-dvb.c index 49a335f4603e..ec65eca713f9 100644 --- a/drivers/media/pci/cx88/cx88-dvb.c +++ b/drivers/media/pci/cx88/cx88-dvb.c | |||
@@ -558,7 +558,7 @@ static const struct s5h1409_config pinnacle_pctv_hd_800i_config = { | |||
558 | .qam_if = 44000, | 558 | .qam_if = 44000, |
559 | .inversion = S5H1409_INVERSION_OFF, | 559 | .inversion = S5H1409_INVERSION_OFF, |
560 | .status_mode = S5H1409_DEMODLOCKING, | 560 | .status_mode = S5H1409_DEMODLOCKING, |
561 | .mpeg_timing = S5H1409_MPEGTIMING_NONCONTINOUS_NONINVERTING_CLOCK, | 561 | .mpeg_timing = S5H1409_MPEGTIMING_NONCONTINUOUS_NONINVERTING_CLOCK, |
562 | }; | 562 | }; |
563 | 563 | ||
564 | static const struct s5h1409_config dvico_hdtv5_pci_nano_config = { | 564 | static const struct s5h1409_config dvico_hdtv5_pci_nano_config = { |
@@ -567,7 +567,7 @@ static const struct s5h1409_config dvico_hdtv5_pci_nano_config = { | |||
567 | .gpio = S5H1409_GPIO_OFF, | 567 | .gpio = S5H1409_GPIO_OFF, |
568 | .inversion = S5H1409_INVERSION_OFF, | 568 | .inversion = S5H1409_INVERSION_OFF, |
569 | .status_mode = S5H1409_DEMODLOCKING, | 569 | .status_mode = S5H1409_DEMODLOCKING, |
570 | .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK, | 570 | .mpeg_timing = S5H1409_MPEGTIMING_CONTINUOUS_NONINVERTING_CLOCK, |
571 | }; | 571 | }; |
572 | 572 | ||
573 | static const struct s5h1409_config kworld_atsc_120_config = { | 573 | static const struct s5h1409_config kworld_atsc_120_config = { |
@@ -576,7 +576,7 @@ static const struct s5h1409_config kworld_atsc_120_config = { | |||
576 | .gpio = S5H1409_GPIO_OFF, | 576 | .gpio = S5H1409_GPIO_OFF, |
577 | .inversion = S5H1409_INVERSION_OFF, | 577 | .inversion = S5H1409_INVERSION_OFF, |
578 | .status_mode = S5H1409_DEMODLOCKING, | 578 | .status_mode = S5H1409_DEMODLOCKING, |
579 | .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK, | 579 | .mpeg_timing = S5H1409_MPEGTIMING_CONTINUOUS_NONINVERTING_CLOCK, |
580 | }; | 580 | }; |
581 | 581 | ||
582 | static const struct xc5000_config pinnacle_pctv_hd_800i_tuner_config = { | 582 | static const struct xc5000_config pinnacle_pctv_hd_800i_tuner_config = { |
@@ -599,7 +599,7 @@ static const struct zl10353_config cx88_geniatech_x8000_mt = { | |||
599 | static const struct s5h1411_config dvico_fusionhdtv7_config = { | 599 | static const struct s5h1411_config dvico_fusionhdtv7_config = { |
600 | .output_mode = S5H1411_SERIAL_OUTPUT, | 600 | .output_mode = S5H1411_SERIAL_OUTPUT, |
601 | .gpio = S5H1411_GPIO_ON, | 601 | .gpio = S5H1411_GPIO_ON, |
602 | .mpeg_timing = S5H1411_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK, | 602 | .mpeg_timing = S5H1411_MPEGTIMING_CONTINUOUS_NONINVERTING_CLOCK, |
603 | .qam_if = S5H1411_IF_44000, | 603 | .qam_if = S5H1411_IF_44000, |
604 | .vsb_if = S5H1411_IF_44000, | 604 | .vsb_if = S5H1411_IF_44000, |
605 | .inversion = S5H1411_INVERSION_OFF, | 605 | .inversion = S5H1411_INVERSION_OFF, |