[media] radio-usb-si4713: make array of structs const
The start_seq[] should be const. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
Родитель
7a016b0880
Коммит
ab3cacf6d9
|
@ -223,7 +223,7 @@ struct si4713_start_seq_table {
|
||||||
* (0x03): Get serial number of the board (Response : CB000-00-00)
|
* (0x03): Get serial number of the board (Response : CB000-00-00)
|
||||||
* (0x06, 0x03, 0x03, 0x08, 0x01, 0x0f) : Get Component revision
|
* (0x06, 0x03, 0x03, 0x08, 0x01, 0x0f) : Get Component revision
|
||||||
*/
|
*/
|
||||||
static struct si4713_start_seq_table start_seq[] = {
|
static const struct si4713_start_seq_table start_seq[] = {
|
||||||
|
|
||||||
{ 1, { 0x03 } },
|
{ 1, { 0x03 } },
|
||||||
{ 2, { 0x32, 0x7f } },
|
{ 2, { 0x32, 0x7f } },
|
||||||
|
@ -261,7 +261,7 @@ static int si4713_start_seq(struct si4713_usb_device *radio)
|
||||||
|
|
||||||
for (i = 0; i < ARRAY_SIZE(start_seq); i++) {
|
for (i = 0; i < ARRAY_SIZE(start_seq); i++) {
|
||||||
int len = start_seq[i].len;
|
int len = start_seq[i].len;
|
||||||
u8 *payload = start_seq[i].payload;
|
const u8 *payload = start_seq[i].payload;
|
||||||
|
|
||||||
memcpy(radio->buffer + 1, payload, len);
|
memcpy(radio->buffer + 1, payload, len);
|
||||||
memset(radio->buffer + len + 1, 0, BUFFER_LENGTH - 1 - len);
|
memset(radio->buffer + len + 1, 0, BUFFER_LENGTH - 1 - len);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче