Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c0661652 authored by Dmitry Torokhov's avatar Dmitry Torokhov
Browse files

Input: uinput - fix coding style in uinput_ioctl_handler()



"case"s in switch statement were indented extra level, let's fix that.

Signed-off-by: default avatarDmitry Torokhov <dmitry.torokhov@gmail.com>
parent 8e009118
Loading
Loading
Loading
Loading
+115 −116
Original line number Diff line number Diff line
@@ -833,8 +833,7 @@ static long uinput_ioctl_handler(struct file *file, unsigned int cmd,

	switch (cmd) {
	case UI_GET_VERSION:
			if (put_user(UINPUT_VERSION,
				     (unsigned int __user *)p))
		if (put_user(UINPUT_VERSION, (unsigned int __user *)p))
			retval = -EFAULT;
		goto out;