Clang-format and checkpatch BLOCK_COMMENT_STYLE

Not sure if this is the right place to put this.

I’m having problem with ReflowComments: true and BLOCK_COMMENT_STYLE.

The problem is that clang-format does not place the closing */ on a new line in a block comment.

/* Really long comment */

becomes

/* Really
 * long
 * comment */

Should preferably be:

/*
 * Really
 * long
 * comment
 */

Is there a way to achieve this?