[RFC PATCH v2 12/17] ACPI: property: Add support for nargs_prop in acpi_fwnode_get_reference_args()
Andy Shevchenko
andriy.shevchenko at linux.intel.com
Mon Feb 3 01:43:26 PST 2025
On Mon, Feb 03, 2025 at 02:19:01PM +0530, Anup Patel wrote:
> From: Sunil V L <sunilvl at ventanamicro.com>
>
> fwnode_get_reference_args() which is common for both DT and ACPI passes
> a property name like #mbox-cells which needs to be fetched from the
> reference node to determine the number of arguments needed for the
> property. However, the ACPI version of this function doesn't support
> this and simply ignores the parameter passed from the wrapper function.
> Add support for dynamically finding number of arguments by reading the
> nargs property value. Update the callers to pass extra parameter.
I don't like this (implementation).
It seems that we basically have two parameters which values are duplicating
each other. This is error prone API and confusing in the cases when both are
defined. If you want property, add a new API that takes const char *nargs
and relies on the property be present.
Your patch becomes much simpler, and solution is robust against potential
confusion on how to treat the corner cases.
Note, Rafael might have different opinion and his has the last word. But
here just my view on the implementation details.
--
With Best Regards,
Andy Shevchenko
More information about the linux-riscv
mailing list