| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * saa7127 - Philips SAA7127/SAA7129 video encoder driver |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 31 | 32 | * macrovision anti-taping support. This driver will almost certainly |
|---|
| 32 | 33 | * work fine for those chips, except of course for the missing anti-taping |
|---|
| 33 | 34 | * support. |
|---|
| 34 | | - * |
|---|
| 35 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 36 | | - * it under the terms of the GNU General Public License as published by |
|---|
| 37 | | - * the Free Software Foundation; either version 2 of the License, or |
|---|
| 38 | | - * (at your option) any later version. |
|---|
| 39 | | - * |
|---|
| 40 | | - * This program is distributed in the hope that it will be useful, |
|---|
| 41 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 42 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 43 | | - * GNU General Public License for more details. |
|---|
| 44 | 35 | */ |
|---|
| 45 | 36 | |
|---|
| 46 | 37 | |
|---|
| .. | .. |
|---|
| 761 | 752 | saa7127_write(sd, SAA7129_REG_FADE_KEY_COL2, |
|---|
| 762 | 753 | read_result); |
|---|
| 763 | 754 | state->ident = SAA7129; |
|---|
| 764 | | - strlcpy(client->name, "saa7129", I2C_NAME_SIZE); |
|---|
| 755 | + strscpy(client->name, "saa7129", I2C_NAME_SIZE); |
|---|
| 765 | 756 | } else { |
|---|
| 766 | 757 | state->ident = SAA7127; |
|---|
| 767 | | - strlcpy(client->name, "saa7127", I2C_NAME_SIZE); |
|---|
| 758 | + strscpy(client->name, "saa7127", I2C_NAME_SIZE); |
|---|
| 768 | 759 | } |
|---|
| 769 | 760 | } |
|---|
| 770 | 761 | |
|---|