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

Commit c4df2822 authored by Aldo Iljazi's avatar Aldo Iljazi Committed by Greg Kroah-Hartman
Browse files

Staging: ft1000: ft1000_download: fixed coding style issues



Fixed the following coding style issues:

Lines 84-91,99-106,275,514: Replaced spaces at the start of the lines
with tabs.

Lines 205,271: Inserted spaces after the commas.
Lines 275,1060,1065: Indented the code with tabs instead of spaces.

Line 275: Inserted spaces around '=' and '<', also moved the trailing
statement on the next line.

Line 512: Removed space between function name and open parenthesis.
Line 839: Removed space after '&'.
Line 853: Removed space after '&'.

Signed-off-by: default avatarAldo Iljazi <mail@aldo.io>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent c766d23b
Loading
Loading
Loading
Loading
+29 −28
Original line number Diff line number Diff line
@@ -271,7 +271,8 @@ static void put_handshake_usb(struct ft1000_usb *ft1000dev,u16 handshake_value)
{
	int i;

        for (i=0; i<1000; i++);
	for (i = 0; i < 1000; i++)
		;
}

static u16 get_request_type(struct ft1000_usb *ft1000dev)