diff options
| author | Wei Yongjun <weiyj.lk@gmail.com> | 2016-08-21 15:30:50 +0000 | 
|---|---|---|
| committer | Jiri Kosina <jkosina@suse.cz> | 2016-08-29 09:36:20 +0200 | 
| commit | 6cf5c1c7162878a99c2fd335d52a7d10079af6b7 (patch) | |
| tree | 8133ecbb4fe4d81e5cee2d16bdc36c50caa8221d /drivers/hid/intel-ish-hid | |
| parent | e8c61135956ce35fcd7661f52ed3a7e21eb86bfb (diff) | |
| download | linux-6cf5c1c7162878a99c2fd335d52a7d10079af6b7.tar.bz2 | |
HID: intel_ish-hid: Use kzalloc instead of kmalloc/memset
Use kzalloc rather than kmalloc followed by memset with 0.
Generated by: scripts/coccinelle/api/alloc/kzalloc-simple.cocci
Signed-off-by: Wei Yongjun <weiyj.lk@gmail.com>
Acked-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/hid/intel-ish-hid')
| -rw-r--r-- | drivers/hid/intel-ish-hid/ishtp/client-buffers.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/drivers/hid/intel-ish-hid/ishtp/client-buffers.c b/drivers/hid/intel-ish-hid/ishtp/client-buffers.c index 3f5ce5ee687e..b9b917d2d50d 100644 --- a/drivers/hid/intel-ish-hid/ishtp/client-buffers.c +++ b/drivers/hid/intel-ish-hid/ishtp/client-buffers.c @@ -73,11 +73,10 @@ int ishtp_cl_alloc_tx_ring(struct ishtp_cl *cl)  	for (j = 0; j < cl->tx_ring_size; ++j) {  		struct ishtp_cl_tx_ring	*tx_buf; -		tx_buf = kmalloc(sizeof(struct ishtp_cl_tx_ring), GFP_KERNEL); +		tx_buf = kzalloc(sizeof(struct ishtp_cl_tx_ring), GFP_KERNEL);  		if (!tx_buf)  			goto	out; -		memset(tx_buf, 0, sizeof(struct ishtp_cl_tx_ring));  		tx_buf->send_buf.data = kmalloc(len, GFP_KERNEL);  		if (!tx_buf->send_buf.data) {  			kfree(tx_buf); |