Commit 08a02cb8 authored by Aya Mahfouz's avatar Aya Mahfouz Committed by Greg Kroah-Hartman
Browse files

staging: ft1000: adjust function arguments



Handles the following issues:

Removing extra parentheses around function arguments,
Removing unnecessary pointer to pointer cast.

Issues detected and resolved using the following coccinelle
script:

@@
expression e;
type t;
identifier f;
@@

f(...,
-(t *)
e
,...)

@@
expression e;
identifier f;
@@

f(...,
&
-(
e
-)
,...)

@@
expression e;
identifier f;
@@

f(...,
-(
e
-)
,...)

Signed-off-by: default avatarAya Mahfouz <mahfouz.saif.elyazal@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a511536f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -713,10 +713,10 @@ int card_download(struct net_device *dev, const u8 *pFileStart,

				/* Get buffer for provisioning data */
				pbuffer =
					kmalloc((usHdrLength + sizeof(struct pseudo_hdr)),
					kmalloc(usHdrLength + sizeof(struct pseudo_hdr),
						GFP_ATOMIC);
				if (pbuffer) {
					memcpy(pbuffer, (void *)pUcFile,
					memcpy(pbuffer, pUcFile,
					       (u32) (usHdrLength +
						      sizeof(struct pseudo_hdr)));
					/* link provisioning data */