mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 04:31:50 +00:00
fallthrough fixes for 5.9-rc3
Hi Linus, Please, pull the following patches that fix some minor issues introduced by the recent treewide fallthrough conversions: - Fix identation issue. - Fix erroneous fallthrough annotation. - Remove unnecessary fallthrough annotation. - Fix code comment changed by fallthrough conversion. Thanks -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEkmRahXBSurMIg1YvRwW0y0cG2zEFAl9KjrkACgkQRwW0y0cG 2zEXgA//VTo6BchCNlH56ukyxxwHK1twxILXtY0+KT24Dh8X9pv9qc4+A4HBFNhv Vs2mF5ihUwoAkTz24rpcb/OhwLxeOngLSLlJS1BO7w+37sLke8eGL5U7hs0Vtqbr YJGzvxI1KpLttpQqf9t5ZmCEfQCRsZhpBreUBukieTbhWwn4no3f4IF6vX/DzGtY YFpcsPYpcIyV5ovsRbMEi51NGAfZxoHNDIa4Px/oijKGuIsVLj7voYaaprxt4Bzm rEk3X7t4Tz7KSY8yu0dFEnKUUUqNW3Io7x3xpAnAhzHvPXd2rvzss8LJPACwCiVC uVf2qrSi0NUzE4Fdhd8VSHCMKoKdpO0k1nW3vA6l5E/pUZFRwTKjlqmg88spNWEW s9yUlLJATHY3TGKm7UoZ3wIAIs5SSYJcNRUDg3jG172wnvIYb/We1b6o/dCJtPbs dxGGQR43+bOnRO+8Gdr4n3Ew9uD67PU7hs9LA74fHPqRJjgQMXTXbOT4EZvAYw3n TxDP2kgoTnYajyXVF6Nh4pmCj2zVFnF2uw6xr5HBdGXOHryE7bVpBAHI1M/bTZSX z42yx8zULDCYtuPKQtWQ6MNqrRLeEP85uMcQCVNPvkmVxtBpeLZnd38RbsqZOTUu D6RTv3LsWsWOCDQgRAUgmpvubO4gRhRsFiCmVmn0enhwFjXBgV0= =gAD2 -----END PGP SIGNATURE----- Merge tag 'fallthrough-fixes-5.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gustavoars/linux Pull fallthrough fixes from Gustavo A. R. Silva: "Fix some minor issues introduced by the recent treewide fallthrough conversions: - Fix identation issue - Fix erroneous fallthrough annotation - Remove unnecessary fallthrough annotation - Fix code comment changed by fallthrough conversion" * tag 'fallthrough-fixes-5.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gustavoars/linux: arm64/cpuinfo: Remove unnecessary fallthrough annotation media: dib0700: Fix identation issue in dib8096_set_param_override() afs: Remove erroneous fallthough annotation iio: dpot-dac: fix code comment in dpot_dac_read_raw()
This commit is contained in:
commit
1127b219ce
@ -327,7 +327,6 @@ static void cpuinfo_detect_icache_policy(struct cpuinfo_arm64 *info)
|
||||
set_bit(ICACHEF_VPIPT, &__icache_flags);
|
||||
break;
|
||||
default:
|
||||
fallthrough;
|
||||
case ICACHE_POLICY_VIPT:
|
||||
/* Assume aliasing */
|
||||
set_bit(ICACHEF_ALIASING, &__icache_flags);
|
||||
|
@ -74,10 +74,11 @@ static int dpot_dac_read_raw(struct iio_dev *indio_dev,
|
||||
case IIO_VAL_INT:
|
||||
/*
|
||||
* Convert integer scale to fractional scale by
|
||||
* setting the denominator (val2) to one, and...
|
||||
* setting the denominator (val2) to one...
|
||||
*/
|
||||
*val2 = 1;
|
||||
ret = IIO_VAL_FRACTIONAL;
|
||||
/* ...and fall through. Say it again for GCC. */
|
||||
fallthrough;
|
||||
case IIO_VAL_FRACTIONAL:
|
||||
*val *= regulator_get_voltage(dac->vref) / 1000;
|
||||
|
@ -1659,14 +1659,14 @@ static int dib8096_set_param_override(struct dvb_frontend *fe)
|
||||
|
||||
switch (band) {
|
||||
default:
|
||||
deb_info("Warning : Rf frequency (%iHz) is not in the supported range, using VHF switch ", fe->dtv_property_cache.frequency);
|
||||
deb_info("Warning : Rf frequency (%iHz) is not in the supported range, using VHF switch ", fe->dtv_property_cache.frequency);
|
||||
fallthrough;
|
||||
case BAND_VHF:
|
||||
state->dib8000_ops.set_gpio(fe, 3, 0, 1);
|
||||
break;
|
||||
state->dib8000_ops.set_gpio(fe, 3, 0, 1);
|
||||
break;
|
||||
case BAND_UHF:
|
||||
state->dib8000_ops.set_gpio(fe, 3, 0, 0);
|
||||
break;
|
||||
state->dib8000_ops.set_gpio(fe, 3, 0, 0);
|
||||
break;
|
||||
}
|
||||
|
||||
ret = state->set_param_save(fe);
|
||||
|
@ -376,7 +376,6 @@ again:
|
||||
spin_unlock(&vnode->lock);
|
||||
return;
|
||||
|
||||
fallthrough;
|
||||
default:
|
||||
/* Looks like a lock request was withdrawn. */
|
||||
spin_unlock(&vnode->lock);
|
||||
|
Loading…
Reference in New Issue
Block a user