Re: [PATCH -next] bus: ti-sysc: Use kzalloc for allocating only one thing

2021-03-24 Thread Tony Lindgren
* Zheng Yongjun [201229 15:51]: > Use kzalloc rather than kcalloc(1,...) Thanks applying into omap-for-v5.13/ti-sysc. Tony

[PATCH -next] bus: ti-sysc: Use kzalloc for allocating only one thing

2020-12-29 Thread Zheng Yongjun
Use kzalloc rather than kcalloc(1,...) The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ @@ - kcalloc(1, + kzalloc( ...) // Signed-off-by: Zheng Yongjun --- drivers/bus/ti-sysc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff