From: Vaishali Thakkar Date: Fri, 31 Oct 2014 18:09:14 +0000 (+0530) Subject: Staging: rtl8188eu: Use put_unaligned_le32 X-Git-Tag: omap-for-v3.19/fixes-rc1~73^2~491 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b365fa9d9264faa7ebccf313899d096b228c65a;p=pandora-kernel.git 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 Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed