Re: [PATCH net-next 1/1] nfp: flower: fix implicit fallthrough warning

2019-04-16 Thread David Miller
From: John Hurley Date: Tue, 16 Apr 2019 15:04:23 +0100 > The nfp_flower_copy_pre_actions function introduces a case statement with > an intentional fallthrough. However, this generates a warning if built > with the -Wimplicit-fallthrough flag. > > Remove the warning by adding a fall through com

[PATCH net-next 1/1] nfp: flower: fix implicit fallthrough warning

2019-04-16 Thread John Hurley
The nfp_flower_copy_pre_actions function introduces a case statement with an intentional fallthrough. However, this generates a warning if built with the -Wimplicit-fallthrough flag. Remove the warning by adding a fall through comment. Fixes: 1c6952ca587d ("nfp: flower: generate merge flow rule")