[PATCH 2/7] thermal: of: Use scoped device node handling to simplify thermal_of_trips_init()

Krzysztof Kozlowski krzysztof.kozlowski at linaro.org
Thu Aug 15 22:28:30 PDT 2024


On 15/08/2024 09:15, Chen-Yu Tsai wrote:
>>  
>>  	tt = kzalloc(sizeof(*tt) * count, GFP_KERNEL);
>> -	if (!tt) {
>> -		ret = -ENOMEM;
>> -		goto out_of_node_put;
>> -	}
>> +	if (!tt)
>> +		return ERR_PTR(-ENOMEM);
>>  
>>  	*ntrips = count;
> 
> Also drop the "of_node_put(trips);" in the successful path?
> 

Right.

Best regards,
Krzysztof




More information about the linux-arm-kernel mailing list