Re: [PATCH 1/1] net: replace /* Fall through */

2023-04-06 Thread Tom Rini
On Sat, Apr 01, 2023 at 09:30:05AM +0200, Heinrich Schuchardt wrote: > gcc 12 does not understand /* Fall through */. > Use the fallthrough macro instead. > > Fallthrough at the start of a switch statement makes no sense. > > Signed-off-by: Heinrich Schuchardt > Reviewed-by: Ramon Fried >

Re: [PATCH 1/1] net: replace /* Fall through */

2023-04-01 Thread Simon Glass
On Sat, 1 Apr 2023 at 20:30, Heinrich Schuchardt < heinrich.schucha...@canonical.com> wrote: > > gcc 12 does not understand /* Fall through */. > Use the fallthrough macro instead. > > Fallthrough at the start of a switch statement makes no sense. > > Signed-off-by: Heinrich Schuchardt > --- >

Re: [PATCH 1/1] net: replace /* Fall through */

2023-04-01 Thread Ramon Fried
On Sat, Apr 1, 2023 at 10:30 AM Heinrich Schuchardt wrote: > > gcc 12 does not understand /* Fall through */. > Use the fallthrough macro instead. > > Fallthrough at the start of a switch statement makes no sense. > > Signed-off-by: Heinrich Schuchardt > --- > net/net.c | 9 - > 1 file

[PATCH 1/1] net: replace /* Fall through */

2023-04-01 Thread Heinrich Schuchardt
gcc 12 does not understand /* Fall through */. Use the fallthrough macro instead. Fallthrough at the start of a switch statement makes no sense. Signed-off-by: Heinrich Schuchardt --- net/net.c | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/net/net.c b/net/net.c