Searched hist:"38 dcdca3" (Results 1 – 1 of 1) sorted by relevance
/openbmc/linux/drivers/media/usb/dvb-usb/ |
H A D | pctv452e.c | 38dcdca3 Thu Jun 25 23:34:37 CDT 2015 Vaishali Thakkar <vthakkar1994@gmail.com> [media] pctv452e: Replace memset with eth_zero_addr
Use eth_zero_addr to assign the zero address to the given address array instead of memset when second argument is address of zero. Note that the 6 in the third argument of memset appears to represent an ethernet address size (ETH_ALEN).
The Coccinelle semantic patch that makes this change is as follows:
// <smpl> @eth_zero_addr@ expression e; @@
-memset(e,0x00,6); +eth_zero_addr(e); // </smpl>
Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com> 38dcdca3 Thu Jun 25 23:34:37 CDT 2015 Vaishali Thakkar <vthakkar1994@gmail.com> [media] pctv452e: Replace memset with eth_zero_addr Use eth_zero_addr to assign the zero address to the given address array instead of memset when second argument is address of zero. Note that the 6 in the third argument of memset appears to represent an ethernet address size (ETH_ALEN). The Coccinelle semantic patch that makes this change is as follows: // <smpl> @eth_zero_addr@ expression e; @@ -memset(e,0x00,6); +eth_zero_addr(e); // </smpl> Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
|