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/cx18 | |
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/cx18')
-rw-r--r-- | drivers/media/pci/cx18/cx18-dvb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/pci/cx18/cx18-dvb.c b/drivers/media/pci/cx18/cx18-dvb.c index 53f4d6bf81fb..010f39eafce1 100644 --- a/drivers/media/pci/cx18/cx18-dvb.c +++ b/drivers/media/pci/cx18/cx18-dvb.c | |||
@@ -72,7 +72,7 @@ static struct s5h1409_config hauppauge_hvr1600_config = { | |||
72 | .qam_if = 44000, | 72 | .qam_if = 44000, |
73 | .inversion = S5H1409_INVERSION_OFF, | 73 | .inversion = S5H1409_INVERSION_OFF, |
74 | .status_mode = S5H1409_DEMODLOCKING, | 74 | .status_mode = S5H1409_DEMODLOCKING, |
75 | .mpeg_timing = S5H1409_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK, | 75 | .mpeg_timing = S5H1409_MPEGTIMING_CONTINUOUS_NONINVERTING_CLOCK, |
76 | .hvr1600_opt = S5H1409_HVR1600_OPTIMIZE | 76 | .hvr1600_opt = S5H1409_HVR1600_OPTIMIZE |
77 | }; | 77 | }; |
78 | 78 | ||
@@ -86,7 +86,7 @@ static struct s5h1411_config hcw_s5h1411_config = { | |||
86 | .qam_if = S5H1411_IF_4000, | 86 | .qam_if = S5H1411_IF_4000, |
87 | .inversion = S5H1411_INVERSION_ON, | 87 | .inversion = S5H1411_INVERSION_ON, |
88 | .status_mode = S5H1411_DEMODLOCKING, | 88 | .status_mode = S5H1411_DEMODLOCKING, |
89 | .mpeg_timing = S5H1411_MPEGTIMING_CONTINOUS_NONINVERTING_CLOCK, | 89 | .mpeg_timing = S5H1411_MPEGTIMING_CONTINUOUS_NONINVERTING_CLOCK, |
90 | }; | 90 | }; |
91 | 91 | ||
92 | static struct tda18271_std_map hauppauge_tda18271_std_map = { | 92 | static struct tda18271_std_map hauppauge_tda18271_std_map = { |