hc
2023-12-11 d2ccde1c8e90d38cee87a1b0309ad2827f3fd30d
kernel/drivers/media/dvb-frontends/stv0910.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0
12 /*
23 * Driver for the ST STV0910 DVB-S/S2 demodulator.
34 *
....@@ -1237,7 +1238,7 @@
12371238 * mutex_lock note: Concurrent I2C gate bus accesses must be
12381239 * prevented (STV0910 = dual demod on a single IC with a single I2C
12391240 * gate/bus, and two tuners attached), similar to most (if not all)
1240
- * other I2C host interfaces/busses.
1241
+ * other I2C host interfaces/buses.
12411242 *
12421243 * enable=1 (open I2C gate) will grab the lock
12431244 * enable=0 (close I2C gate) releases the lock
....@@ -1499,7 +1500,7 @@
14991500 RSTV0910_P2_FBERCPT4 + state->regoff, 0x00);
15001501 /*
15011502 * Reset the packet Error counter2 (and Set it to
1502
- * infinit error count mode)
1503
+ * infinite error count mode)
15031504 */
15041505 write_reg(state,
15051506 RSTV0910_P2_ERRCTRL2 + state->regoff, 0xc1);
....@@ -1839,4 +1840,4 @@
18391840
18401841 MODULE_DESCRIPTION("ST STV0910 multistandard frontend driver");
18411842 MODULE_AUTHOR("Ralph and Marcus Metzler, Manfred Voelkel");
1842
-MODULE_LICENSE("GPL");
1843
+MODULE_LICENSE("GPL v2");