| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Support for LG2160 - ATSC/MH |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 2010 Michael Krufky <mkrufky@linuxtv.org> |
|---|
| 5 | | - * |
|---|
| 6 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 7 | | - * it under the terms of the GNU General Public License as published by |
|---|
| 8 | | - * the Free Software Foundation; either version 2 of the License, or |
|---|
| 9 | | - * (at your option) any later version. |
|---|
| 10 | | - * |
|---|
| 11 | | - * This program is distributed in the hope that it will be useful, |
|---|
| 12 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 13 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 14 | | - * GNU General Public License for more details. |
|---|
| 15 | | - * |
|---|
| 16 | 6 | */ |
|---|
| 17 | 7 | |
|---|
| 18 | 8 | #include <linux/jiffies.h> |
|---|
| .. | .. |
|---|
| 1418 | 1408 | switch (config->lg_chip) { |
|---|
| 1419 | 1409 | default: |
|---|
| 1420 | 1410 | lg_warn("invalid chip requested, defaulting to LG2160"); |
|---|
| 1421 | | - /* fall-thru */ |
|---|
| 1411 | + fallthrough; |
|---|
| 1422 | 1412 | case LG2160: |
|---|
| 1423 | 1413 | memcpy(&state->frontend.ops, &lg2160_ops, |
|---|
| 1424 | 1414 | sizeof(struct dvb_frontend_ops)); |
|---|
| .. | .. |
|---|
| 1436 | 1426 | |
|---|
| 1437 | 1427 | return &state->frontend; |
|---|
| 1438 | 1428 | } |
|---|
| 1439 | | -EXPORT_SYMBOL(lg2160_attach); |
|---|
| 1429 | +EXPORT_SYMBOL_GPL(lg2160_attach); |
|---|
| 1440 | 1430 | |
|---|
| 1441 | 1431 | MODULE_DESCRIPTION("LG Electronics LG216x ATSC/MH Demodulator Driver"); |
|---|
| 1442 | 1432 | MODULE_AUTHOR("Michael Krufky <mkrufky@linuxtv.org>"); |
|---|