On Tue, 11 Jul 2023 13:38:00 -0400 Alan Stern wrote: > + u8 ep_addrs[3] = { > + info->in + USB_DIR_IN, info->out + USB_DIR_OUT, 0}; With the two-tab indentation and the continuation line starting half way thru.. this looks highly unusual. Can we use a more standard kernel formatting in this case? u8 ep_addrs[3] = { info->in + USB_DIR_IN, info->out + USB_DIR_OUT, 0 }; -- pw-bot: cr