.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | |
---|
3 | 4 | Broadcom B43 wireless driver |
---|
.. | .. |
---|
6 | 7 | Copyright (c) 2008 Michael Buesch <m@bues.ch> |
---|
7 | 8 | Copyright (c) 2010 Rafał Miłecki <zajec5@gmail.com> |
---|
8 | 9 | |
---|
9 | | - This program is free software; you can redistribute it and/or modify |
---|
10 | | - it under the terms of the GNU General Public License as published by |
---|
11 | | - the Free Software Foundation; either version 2 of the License, or |
---|
12 | | - (at your option) any later version. |
---|
13 | | - |
---|
14 | | - This program is distributed in the hope that it will be useful, |
---|
15 | | - but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
16 | | - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
17 | | - GNU General Public License for more details. |
---|
18 | | - |
---|
19 | | - You should have received a copy of the GNU General Public License |
---|
20 | | - along with this program; see the file COPYING. If not, write to |
---|
21 | | - the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, |
---|
22 | | - Boston, MA 02110-1301, USA. |
---|
23 | 10 | |
---|
24 | 11 | */ |
---|
25 | 12 | |
---|
.. | .. |
---|
3633 | 3620 | ntab_upload(dev, B43_NTAB_C1_LOFEEDTH, b43_ntab_loftlt1); |
---|
3634 | 3621 | } |
---|
3635 | 3622 | |
---|
3636 | | -/* http://bcm-v4.sipsolutions.net/802.11/PHY/N/InitTables */ |
---|
| 3623 | +/* https://bcm-v4.sipsolutions.net/802.11/PHY/N/InitTables */ |
---|
3637 | 3624 | void b43_nphy_tables_init(struct b43_wldev *dev) |
---|
3638 | 3625 | { |
---|
3639 | 3626 | if (dev->phy.rev >= 16) |
---|
.. | .. |
---|
3646 | 3633 | b43_nphy_tables_init_rev0(dev); |
---|
3647 | 3634 | } |
---|
3648 | 3635 | |
---|
3649 | | -/* http://bcm-v4.sipsolutions.net/802.11/PHY/N/GetIpaGainTbl */ |
---|
| 3636 | +/* https://bcm-v4.sipsolutions.net/802.11/PHY/N/GetIpaGainTbl */ |
---|
3650 | 3637 | static const u32 *b43_nphy_get_ipa_gain_table(struct b43_wldev *dev) |
---|
3651 | 3638 | { |
---|
3652 | 3639 | struct b43_phy *phy = &dev->phy; |
---|
.. | .. |
---|
3730 | 3717 | case 5: |
---|
3731 | 3718 | if (sprom->fem.ghz2.extpa_gain == 3) |
---|
3732 | 3719 | return b43_ntab_tx_gain_epa_rev3_hi_pwr_2g; |
---|
3733 | | - /* fall through */ |
---|
| 3720 | + fallthrough; |
---|
3734 | 3721 | case 4: |
---|
3735 | 3722 | case 3: |
---|
3736 | 3723 | return b43_ntab_tx_gain_epa_rev3_2g; |
---|