On Mon, 2020-09-21 at 22:49 +0200, Krzysztof Kozlowski wrote:
> Use PLATFORM_DEVID_NONE define instead of "-1" value because:
>  - it brings some meaning,
>  - it might point attention why auto device ID was not used.
> 
> Signed-off-by: Krzysztof Kozlowski <k...@kernel.org>
> ---

Reviewed-by: Nicolas Saenz Julienne <nsaenzjulie...@suse.de>

>  drivers/mfd/bcm2835-pm.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/mfd/bcm2835-pm.c b/drivers/mfd/bcm2835-pm.c
> index 42fe67f1538e..a76014512bde 100644
> --- a/drivers/mfd/bcm2835-pm.c
> +++ b/drivers/mfd/bcm2835-pm.c
> @@ -44,7 +44,7 @@ static int bcm2835_pm_probe(struct platform_device *pdev)
>       if (IS_ERR(pm->base))
>               return PTR_ERR(pm->base);
>  
> -     ret = devm_mfd_add_devices(dev, -1,
> +     ret = devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE,
>                                  bcm2835_pm_devs, ARRAY_SIZE(bcm2835_pm_devs),
>                                  NULL, 0, NULL);
>       if (ret)
> @@ -60,7 +60,7 @@ static int bcm2835_pm_probe(struct platform_device *pdev)
>               if (IS_ERR(pm->asb))
>                       return PTR_ERR(pm->asb);
>  
> -             ret = devm_mfd_add_devices(dev, -1,
> +             ret = devm_mfd_add_devices(dev, PLATFORM_DEVID_NONE,
>                                          bcm2835_power_devs,
>                                          ARRAY_SIZE(bcm2835_power_devs),
>                                          NULL, 0, NULL);

Attachment: signature.asc
Description: This is a digitally signed message part

Reply via email to