Commit f9d3faee authored by Peter Karlsson's avatar Peter Karlsson Committed by Greg Kroah-Hartman

staging: ft1000-usb: Removed unnecessary parenthes

Fix checkpatch warning about unnecessary parenthes.
Signed-off-by: default avatarPeter Karlsson <peter.p.karlsson@svt.se>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 7b174df6
......@@ -317,7 +317,7 @@ static int ft1000_open(struct inode *inode, struct file *file)
/* Search for available application info block */
for (i = 0; i < MAX_NUM_APP; i++) {
if ((dev->app_info[i].fileobject == NULL))
if (dev->app_info[i].fileobject == NULL)
break;
}
......
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