Staging: rtl8188eu: Use put_unaligned_le32
authorVaishali Thakkar <vthakkar1994@gmail.com>
Fri, 31 Oct 2014 18:09:14 +0000 (23:39 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 4 Nov 2014 00:10:38 +0000 (16:10 -0800)
commit2b365fa9d9264faa7ebccf313899d096b228c65a
tree420523a7a836433acf1ad059f0a9eda167d0a385
parent85ebbcca8ac2014d439fd90764e334924ca33ed3
Staging: rtl8188eu: Use put_unaligned_le32

This patch introduces the use of function put_unaligned_le32.

This is done using Coccinelle and semantic patch used is as follows:

@@ identifier tmp; expression ptr; expression y,e; type T; @@

- tmp = cpu_to_le32(y);

  <+... when != tmp
- memcpy(ptr, (T)&tmp, ...);
+ put_unaligned_le32(y,ptr);
  ...+>
? tmp = e

@@ type T; identifier tmp; @@

- T tmp;
...when != tmp

Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/hal/rtl8188e_cmd.c