.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * saa717x - Philips SAA717xHL video decoder driver |
---|
3 | 4 | * |
---|
.. | .. |
---|
14 | 15 | * Note: this is a reversed engineered driver based on captures from |
---|
15 | 16 | * the I2C bus under Windows. This chip is very similar to the saa7134, |
---|
16 | 17 | * though. Unfortunately, this driver is currently only working for NTSC. |
---|
17 | | - * |
---|
18 | | - * This program is free software; you can redistribute it and/or modify |
---|
19 | | - * it under the terms of the GNU General Public License as published by |
---|
20 | | - * the Free Software Foundation; either version 2 of the License, or |
---|
21 | | - * (at your option) any later version. |
---|
22 | | - * |
---|
23 | | - * This program is distributed in the hope that it will be useful, |
---|
24 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
25 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
26 | | - * GNU General Public License for more details. |
---|
27 | 18 | */ |
---|
28 | 19 | |
---|
29 | 20 | #include <linux/module.h> |
---|
.. | .. |
---|
844 | 835 | if (i == count) |
---|
845 | 836 | return; |
---|
846 | 837 | |
---|
847 | | - /* horizonal prescaling */ |
---|
| 838 | + /* horizontal prescaling */ |
---|
848 | 839 | saa717x_write(sd, 0x60 + task_shift, vals[i].xpsc); |
---|
849 | 840 | /* accumulation length */ |
---|
850 | 841 | saa717x_write(sd, 0x61 + task_shift, vals[i].xacl); |
---|