| .. | .. |
|---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Codec driver for ST STA350 2.1-channel high-efficiency digital audio system |
|---|
| 3 | 4 | * |
|---|
| .. | .. |
|---|
| 11 | 12 | * Mark Brown <broonie@opensource.wolfsonmicro.com> |
|---|
| 12 | 13 | * Freescale Semiconductor, Inc. |
|---|
| 13 | 14 | * Timur Tabi <timur@freescale.com> |
|---|
| 14 | | - * |
|---|
| 15 | | - * This program is free software; you can redistribute it and/or modify it |
|---|
| 16 | | - * under the terms of the GNU General Public License as published by the |
|---|
| 17 | | - * Free Software Foundation; either version 2 of the License, or (at your |
|---|
| 18 | | - * option) any later version. |
|---|
| 19 | 15 | */ |
|---|
| 20 | 16 | |
|---|
| 21 | 17 | #define pr_fmt(fmt) KBUILD_MODNAME ":%s:%d: " fmt, __func__, __LINE__ |
|---|
| .. | .. |
|---|
| 730 | 726 | switch (params_width(params)) { |
|---|
| 731 | 727 | case 24: |
|---|
| 732 | 728 | dev_dbg(component->dev, "24bit\n"); |
|---|
| 733 | | - /* fall through */ |
|---|
| 729 | + fallthrough; |
|---|
| 734 | 730 | case 32: |
|---|
| 735 | 731 | dev_dbg(component->dev, "24bit or 32bit\n"); |
|---|
| 736 | 732 | switch (sta350->format) { |
|---|