Commit 8d53d80b authored by Amitoj Kaur Chawla's avatar Amitoj Kaur Chawla Committed by Greg Kroah-Hartman

staging: unisys: Remove useless intialisation

Remove intialisation of a variable that is immediately reassigned.

The semantic patch used to find this is:

// <smpl>
@@
type T;
identifier x;
constant C;
expression e;
@@

T x
- = C
 ;
x = e;
// </smpl>
Signed-off-by: default avatarAmitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7eb1f7a0
...@@ -255,7 +255,7 @@ register_client_keyboard(void *devdata, /* opaque on purpose */ ...@@ -255,7 +255,7 @@ register_client_keyboard(void *devdata, /* opaque on purpose */
{ {
int i, error; int i, error;
struct input_dev *visorinput_dev = NULL; struct input_dev *visorinput_dev;
visorinput_dev = input_allocate_device(); visorinput_dev = input_allocate_device();
if (!visorinput_dev) if (!visorinput_dev)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment