On Thu, 9 Oct 2025 at 00:55, Crystal Wood <[email protected]> wrote: > Looks like there was existing inconsistency with newlines... maybe have > fatal() include the newline automatically to simplify callers slightly? > We're not going to print a continuation if we're exiting. > > Otherwise, for the whole series: > Reviewed-by: Crystal Wood <[email protected]>
fatal() belongs to the same family as debug_msg() and err_msg(). Historically, the prototype and usage of these functions is identical to printf(). printk() was identical as well, but now it adds a missing end-of-line automatically. fatal(), along with debug_msg() and err_msg(), can be upgraded too, but they should be updated together for consistency. Thanks Costa
