diff options
author | Vaishali Thakkar <vthakkar1994@gmail.com> | 2015-01-16 19:06:14 +0300 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2015-01-23 22:12:52 +0300 |
commit | 362126cddb22256db1e9ab6862aa720c3f091e52 (patch) | |
tree | 94e2320c30285ac7ba7dad1f734dc19d0bc3d14a /scripts/gdb/linux/utils.py | |
parent | 799038ea9bbbfee240b85bcb17e487d44cdf5009 (diff) | |
download | linux-362126cddb22256db1e9ab6862aa720c3f091e52.tar.xz |
brcmfmac: 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:
@a@
typedef u32, __le32, uint32_t;
{u32,__le32,uint32_t} e32;
identifier tmp;
expression ptr;
expression y,e;
type T;
type T;
@@
- tmp = cpu_to_le32(y);
<+... when != tmp
(
- memcpy(ptr, (T)&tmp, \(4\|sizeof(u32)\|sizeof(__le32)\|sizeof(uint32_t)\|sizeof(e32)\));
+ put_unaligned_le32(y,ptr);
|
- memcpy(ptr, (T)&tmp, ...);
+ put_unaligned_le32(y,ptr);
)
...+>
? tmp = e
@@ type T; identifier a.tmp; @@
- T tmp;
...when != tmp
Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'scripts/gdb/linux/utils.py')
0 files changed, 0 insertions, 0 deletions