Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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()

+7 -8
-1
arch/arm64/kernel/cpuinfo.c
··· 327 327 set_bit(ICACHEF_VPIPT, &__icache_flags); 328 328 break; 329 329 default: 330 - fallthrough; 331 330 case ICACHE_POLICY_VIPT: 332 331 /* Assume aliasing */ 333 332 set_bit(ICACHEF_ALIASING, &__icache_flags);
+2 -1
drivers/iio/dac/dpot-dac.c
··· 74 74 case IIO_VAL_INT: 75 75 /* 76 76 * Convert integer scale to fractional scale by 77 - * setting the denominator (val2) to one, and... 77 + * setting the denominator (val2) to one... 78 78 */ 79 79 *val2 = 1; 80 80 ret = IIO_VAL_FRACTIONAL; 81 + /* ...and fall through. Say it again for GCC. */ 81 82 fallthrough; 82 83 case IIO_VAL_FRACTIONAL: 83 84 *val *= regulator_get_voltage(dac->vref) / 1000;
+5 -5
drivers/media/usb/dvb-usb/dib0700_devices.c
··· 1659 1659 1660 1660 switch (band) { 1661 1661 default: 1662 - deb_info("Warning : Rf frequency (%iHz) is not in the supported range, using VHF switch ", fe->dtv_property_cache.frequency); 1662 + deb_info("Warning : Rf frequency (%iHz) is not in the supported range, using VHF switch ", fe->dtv_property_cache.frequency); 1663 1663 fallthrough; 1664 1664 case BAND_VHF: 1665 - state->dib8000_ops.set_gpio(fe, 3, 0, 1); 1666 - break; 1665 + state->dib8000_ops.set_gpio(fe, 3, 0, 1); 1666 + break; 1667 1667 case BAND_UHF: 1668 - state->dib8000_ops.set_gpio(fe, 3, 0, 0); 1669 - break; 1668 + state->dib8000_ops.set_gpio(fe, 3, 0, 0); 1669 + break; 1670 1670 } 1671 1671 1672 1672 ret = state->set_param_save(fe);
-1
fs/afs/flock.c
··· 376 376 spin_unlock(&vnode->lock); 377 377 return; 378 378 379 - fallthrough; 380 379 default: 381 380 /* Looks like a lock request was withdrawn. */ 382 381 spin_unlock(&vnode->lock);