Fix the following errors reported by checkpatch: ERROR: "foo * bar" should be "foo *bar" Signed-off-by: GuoHua Cheng <chenguohua@xxxxxxx> --- include/linux/selection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/selection.h b/include/linux/selection.h index 170ef28ff26b..3bff95699083 100644 --- a/include/linux/selection.h +++ b/include/linux/selection.h @@ -22,7 +22,7 @@ extern int set_selection_kernel(struct tiocl_selection *v, extern int paste_selection(struct tty_struct *tty); extern int sel_loadlut(char __user *p); extern int mouse_reporting(void); -extern void mouse_report(struct tty_struct * tty, int butt, int mrx, int mry); +extern void mouse_report(struct tty_struct *tty, int butt, int mrx, int mry); bool vc_is_sel(struct vc_data *vc); -- 2.17.1