Re: [PATCH 09/10] of: property: Implement of_fwnode_property_present() by of_property_present()

From: Zijun Hu
Date: Tue Dec 10 2024 - 07:44:33 EST


On 2024/12/10 00:48, Rob Herring wrote:
> On Thu, Dec 5, 2024 at 6:54 PM Zijun Hu <zijun_hu@xxxxxxxxxx> wrote:
>>
>> From: Zijun Hu <quic_zijuhu@xxxxxxxxxxx>
>>
>> of_property_read_bool() is deprecated for non-boolean property, but
>> of_fwnode_property_present() still uses it.
>>
>> Fix by using of_property_present() instead of of_property_read_bool().
>
> of_property_present() just calls of_property_read_bool(). For now. I'm
> working on making using of_property_read_bool() on non-boolean a
> warning. No point in this change until that happens.
>

what about below idea?

replace all of_property_read_bool() usages with of_property_present()
then remove the former.

> Rob