On Fri, Jun 19, 2015 at 3:26 AM, Christian König
wrote:
> On 19.06.2015 06:05, Maninder Singh wrote:
>>
>> Use kzalloc for allocating one thing rather than
>> kcalloc(1...
>>
>> The semantic patch that makes this change is as follows:
>>
>> //
>> @@
>> @@
>>
>> - kcalloc(1,
>> + kzalloc(
>>
Use kzalloc for allocating one thing rather than
kcalloc(1...
The semantic patch that makes this change is as follows:
//
@@
@@
- kcalloc(1,
+ kzalloc(
...)
//
Signed-off-by: Maninder Singh
Reviewed-by: Vaneet Narang
---
drivers/gpu/drm/radeon/radeon_ttm.c |2 +-
1 files chan
On 19.06.2015 06:05, Maninder Singh wrote:
> Use kzalloc for allocating one thing rather than
> kcalloc(1...
>
> The semantic patch that makes this change is as follows:
>
> //
> @@
> @@
>
> - kcalloc(1,
> + kzalloc(
>...)
> //
>
> Signed-off-by: Maninder Singh
> Reviewed-by: Vaneet