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

Commit 068b561c authored by Ruslan Pisarev's avatar Ruslan Pisarev Committed by Greg Kroah-Hartman
Browse files

Staging: wlags49_h2: fix TAB and space coding style issue dhf.c



This is a patch to the dhf.c file that fixed up a TAB and spaces Errors
found by the checkpatch.pl tools

Signed-off-by: default avatarRuslan Pisarev <ruslan@rpisarev.org.ua>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent ccc75a58
Loading
Loading
Loading
Loading
+44 −44
Original line number Diff line number Diff line
@@ -120,7 +120,7 @@ char signature[14] = "FUPU7D37dhfwci";
#if defined(_MSC_VER) && _MSC_VER ==  800				/* Visual C++ 1.5 */
#define PSEUDO_CHARP hcf_32
#else
#define PSEUDO_CHARP hcf_8*
#define PSEUDO_CHARP (hcf_8 *)
#endif

/*-----------------------------------------------------------------------------
@@ -278,7 +278,7 @@ CFG_PROG_STRCT *p;
int				i;

	/* validate the image */
	for ( i = 0; i < sizeof(signature) && fw->signature[i] == signature[i]; i++ ) /* NOP */;
	for (i = 0; i < sizeof(signature) && fw->signature[i] == signature[i]; i++); /* NOP */
	if (i != sizeof(signature) 		||
		 fw->signature[i] != 0x01   	||
		 /* test for Little/Big Endian Binary flag */