On Wed, Dec 05, 2018 at 11:18:45AM +0200, Andy Shevchenko wrote: > On Wed, Dec 05, 2018 at 11:10:46AM +0200, Felipe Balbi wrote: > > Andy Shevchenko <andriy.shevchenko@xxxxxxxxxxxxxxx> writes: > > > > > The missed break statement in the outer switch makes the code fall through > > > always and thus always same value will be printed. > > > > > > Besides that, compiler warns about missed fall through marker: > > > > > > drivers/usb/dwc3/./trace.h: In function ‘trace_raw_output_dwc3_log_trb’: > > > drivers/usb/dwc3/./trace.h:246:4: warning: this statement may fall through [-Wimplicit-fallthrough=] > > > switch (pcm) { > > > ^~~~~~ > > easier to add "break" here, no? That would be the minimal fix. > > No. Then you would need to add same default to the inner switch. Ah, you meant that pcm would be never outside of the given cases. Yes, that's fine then, consider my patch as a bugreport. -- With Best Regards, Andy Shevchenko