Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

media: dvb: Fix typos in comments across various files

This patch corrects spelling errors in comments within
the media/dvb-frontends directory found by codespell to enhance
clarity and maintainability of the code.
This change does not affect the functionality.

Signed-off-by: Yu Jiaoliang <yujiaoliang@vivo.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>

authored by

Yu Jiaoliang and committed by
Hans Verkuil
2f88509d 1e63c794

+7 -7
+1 -1
drivers/media/dvb-frontends/bcm3510.c
··· 729 729 int ret; 730 730 bcm3510_register_value v; 731 731 732 - /* read Acquisation Processor status register and check it is not in RUN mode */ 732 + /* read Acquisition Processor status register and check it is not in RUN mode */ 733 733 if ((ret = bcm3510_readB(st,0xa2,&v)) < 0) 734 734 return ret; 735 735 if (v.APSTAT1_a2.RUN) {
+2 -2
drivers/media/dvb-frontends/dib0090.c
··· 78 78 #define SOC_8090_P1G_11R1 0x86 79 79 #define SOC_8090_P1G_21R1 0x8e 80 80 81 - /* else use thos ones to check */ 81 + /* else use those ones to check */ 82 82 #define P1A_B 0x0 83 83 #define P1C 0x1 84 84 #define P1D_E_F 0x3 ··· 1574 1574 if (((state->identity.version & 0x1f) >= P1D_E_F) || (state->identity.in_soc)) 1575 1575 dib0090_set_EFUSE(state); 1576 1576 1577 - /* Congigure in function of the crystal */ 1577 + /* Configure in function of the crystal */ 1578 1578 if (state->config->force_crystal_mode != 0) 1579 1579 dib0090_write_reg(state, 0x14, 1580 1580 state->config->force_crystal_mode & 3);
+1 -1
drivers/media/dvb-frontends/dib3000mb.c
··· 640 640 return 0; 641 641 } 642 642 643 - /* see dib3000-watch dvb-apps for exact calcuations of signal_strength and snr */ 643 + /* see dib3000-watch dvb-apps for exact calculations of signal_strength and snr */ 644 644 static int dib3000mb_read_signal_strength(struct dvb_frontend* fe, u16 *strength) 645 645 { 646 646 struct dib3000_state* state = fe->demodulator_priv;
+1 -1
drivers/media/dvb-frontends/stv6111.c
··· 161 161 }; 162 162 163 163 /* 164 - * This table is 6 dB too low comapred to the others (probably created with 164 + * This table is 6 dB too low compared to the others (probably created with 165 165 * a different BB_MAG setting) 166 166 */ 167 167 static const struct slookup gain_channel_agc_nf_lookup[] = {
+1 -1
drivers/media/dvb-frontends/tda18271c2dd.c
··· 954 954 Capprox = 255; 955 955 956 956 957 - /* TODO Temperature compensation. There is defenitely a scale factor */ 957 + /* TODO Temperature compensation. There is definitely a scale factor */ 958 958 /* missing in the datasheet, so leave it out for now. */ 959 959 state->m_Regs[EB14] = Capprox; 960 960
+1 -1
drivers/media/dvb-frontends/zl10036.c
··· 89 89 int ret; 90 90 91 91 if (zl10036_debug & 0x02) { 92 - /* every 8bit-value satisifes this! 92 + /* every 8bit-value satisfies this! 93 93 * so only check for debug log */ 94 94 if ((buf[0] & 0x80) == 0x00) 95 95 reg = 2;