public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] powerpc/sysdev: Use of_device_get_match_data()
@ 2022-03-04  1:18 cgel.zte
  2022-03-04 13:10 ` Christophe Leroy
  0 siblings, 1 reply; 5+ messages in thread
From: cgel.zte @ 2022-03-04  1:18 UTC (permalink / raw)
  To: mpe
  Cc: benh, paulus, maz, tglx, jgg, linuxppc-dev, linux-kernel,
	Minghao Chi, Zeal Robot

From: Minghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>

Use of_device_get_match_data() to simplify the code.

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Minghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
---
 arch/powerpc/sysdev/fsl_msi.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/arch/powerpc/sysdev/fsl_msi.c b/arch/powerpc/sysdev/fsl_msi.c
index b3475ae9f236..9d135bbb30b7 100644
--- a/arch/powerpc/sysdev/fsl_msi.c
+++ b/arch/powerpc/sysdev/fsl_msi.c
@@ -387,7 +387,6 @@ static int fsl_msi_setup_hwirq(struct fsl_msi *msi, struct platform_device *dev,
 static const struct of_device_id fsl_of_msi_ids[];
 static int fsl_of_msi_probe(struct platform_device *dev)
 {
-	const struct of_device_id *match;
 	struct fsl_msi *msi;
 	struct resource res, msiir;
 	int err, i, j, irq_index, count;
@@ -397,10 +396,7 @@ static int fsl_of_msi_probe(struct platform_device *dev)
 	u32 offset;
 	struct pci_controller *phb;
 
-	match = of_match_device(fsl_of_msi_ids, &dev->dev);
-	if (!match)
-		return -EINVAL;
-	features = match->data;
+	features = of_device_get_match_data(&dev->dev);
 
 	printk(KERN_DEBUG "Setting up Freescale MSI support\n");
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] powerpc/sysdev: Use of_device_get_match_data()
  2022-03-04  1:18 [PATCH] powerpc/sysdev: Use of_device_get_match_data() cgel.zte
@ 2022-03-04 13:10 ` Christophe Leroy
  2022-03-04 14:26   ` Marc Zyngier
  0 siblings, 1 reply; 5+ messages in thread
From: Christophe Leroy @ 2022-03-04 13:10 UTC (permalink / raw)
  To: cgel.zte@gmail.com, mpe@ellerman.id.au
  Cc: Zeal Robot, linux-kernel@vger.kernel.org, Minghao Chi,
	jgg@ziepe.ca, paulus@samba.org, maz@kernel.org,
	tglx@linutronix.de, linuxppc-dev@lists.ozlabs.org



Le 04/03/2022 à 02:18, cgel.zte@gmail.com a écrit :
> From: Minghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
> 
> Use of_device_get_match_data() to simplify the code.
> 
> Reported-by: Zeal Robot <zealci@zte.com.cn>
> Signed-off-by: Minghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
> ---
>   arch/powerpc/sysdev/fsl_msi.c | 6 +-----
>   1 file changed, 1 insertion(+), 5 deletions(-)
> 
> diff --git a/arch/powerpc/sysdev/fsl_msi.c b/arch/powerpc/sysdev/fsl_msi.c
> index b3475ae9f236..9d135bbb30b7 100644
> --- a/arch/powerpc/sysdev/fsl_msi.c
> +++ b/arch/powerpc/sysdev/fsl_msi.c
> @@ -387,7 +387,6 @@ static int fsl_msi_setup_hwirq(struct fsl_msi *msi, struct platform_device *dev,
>   static const struct of_device_id fsl_of_msi_ids[];
>   static int fsl_of_msi_probe(struct platform_device *dev)
>   {
> -	const struct of_device_id *match;
>   	struct fsl_msi *msi;
>   	struct resource res, msiir;
>   	int err, i, j, irq_index, count;
> @@ -397,10 +396,7 @@ static int fsl_of_msi_probe(struct platform_device *dev)
>   	u32 offset;
>   	struct pci_controller *phb;
>   
> -	match = of_match_device(fsl_of_msi_ids, &dev->dev);
> -	if (!match)
> -		return -EINVAL;
> -	features = match->data;
> +	features = of_device_get_match_data(&dev->dev);

What happens when features is NULL ?

>   
>   	printk(KERN_DEBUG "Setting up Freescale MSI support\n");
>   

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] powerpc/sysdev: Use of_device_get_match_data()
  2022-03-04 13:10 ` Christophe Leroy
@ 2022-03-04 14:26   ` Marc Zyngier
  2022-03-04 14:29     ` Christophe Leroy
  0 siblings, 1 reply; 5+ messages in thread
From: Marc Zyngier @ 2022-03-04 14:26 UTC (permalink / raw)
  To: Christophe Leroy
  Cc: cgel.zte@gmail.com, mpe@ellerman.id.au, Zeal Robot,
	linux-kernel@vger.kernel.org, Minghao Chi, jgg@ziepe.ca,
	paulus@samba.org, tglx@linutronix.de,
	linuxppc-dev@lists.ozlabs.org

On Fri, 04 Mar 2022 13:10:19 +0000,
Christophe Leroy <christophe.leroy@csgroup.eu> wrote:
> 
> 
> 
> Le 04/03/2022 à 02:18, cgel.zte@gmail.com a écrit :
> > From: Minghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
> > 
> > Use of_device_get_match_data() to simplify the code.
> > 
> > Reported-by: Zeal Robot <zealci@zte.com.cn>
> > Signed-off-by: Minghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
> > ---
> >   arch/powerpc/sysdev/fsl_msi.c | 6 +-----
> >   1 file changed, 1 insertion(+), 5 deletions(-)
> > 
> > diff --git a/arch/powerpc/sysdev/fsl_msi.c b/arch/powerpc/sysdev/fsl_msi.c
> > index b3475ae9f236..9d135bbb30b7 100644
> > --- a/arch/powerpc/sysdev/fsl_msi.c
> > +++ b/arch/powerpc/sysdev/fsl_msi.c
> > @@ -387,7 +387,6 @@ static int fsl_msi_setup_hwirq(struct fsl_msi *msi, struct platform_device *dev,
> >   static const struct of_device_id fsl_of_msi_ids[];
> >   static int fsl_of_msi_probe(struct platform_device *dev)
> >   {
> > -	const struct of_device_id *match;
> >   	struct fsl_msi *msi;
> >   	struct resource res, msiir;
> >   	int err, i, j, irq_index, count;
> > @@ -397,10 +396,7 @@ static int fsl_of_msi_probe(struct platform_device *dev)
> >   	u32 offset;
> >   	struct pci_controller *phb;
> >   
> > -	match = of_match_device(fsl_of_msi_ids, &dev->dev);
> > -	if (!match)
> > -		return -EINVAL;
> > -	features = match->data;
> > +	features = of_device_get_match_data(&dev->dev);
> 
> What happens when features is NULL ?

I did jump at that one too, but as it turns out, it cannot happen, by
construction. All the fsl_of_msi_ids[] entries have a non-NULL .data
pointer, and you only enter probe if you match a fsl_of_msi_ids[]
entry with the DT.

So the current check for a NULL match is not something that can happen
short of some other bug somewhere.

	M.

-- 
Without deviation from the norm, progress is not possible.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] powerpc/sysdev: Use of_device_get_match_data()
  2022-03-04 14:26   ` Marc Zyngier
@ 2022-03-04 14:29     ` Christophe Leroy
  2022-03-07  0:44       ` Michael Ellerman
  0 siblings, 1 reply; 5+ messages in thread
From: Christophe Leroy @ 2022-03-04 14:29 UTC (permalink / raw)
  To: Marc Zyngier
  Cc: cgel.zte@gmail.com, mpe@ellerman.id.au, Zeal Robot,
	linux-kernel@vger.kernel.org, Minghao Chi, jgg@ziepe.ca,
	paulus@samba.org, tglx@linutronix.de,
	linuxppc-dev@lists.ozlabs.org



Le 04/03/2022 à 15:26, Marc Zyngier a écrit :
> On Fri, 04 Mar 2022 13:10:19 +0000,
> Christophe Leroy <christophe.leroy@csgroup.eu> wrote:
>>
>>
>>
>> Le 04/03/2022 à 02:18, cgel.zte@gmail.com a écrit :
>>> From: Minghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
>>>
>>> Use of_device_get_match_data() to simplify the code.
>>>
>>> Reported-by: Zeal Robot <zealci@zte.com.cn>
>>> Signed-off-by: Minghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
>>> ---
>>>    arch/powerpc/sysdev/fsl_msi.c | 6 +-----
>>>    1 file changed, 1 insertion(+), 5 deletions(-)
>>>
>>> diff --git a/arch/powerpc/sysdev/fsl_msi.c b/arch/powerpc/sysdev/fsl_msi.c
>>> index b3475ae9f236..9d135bbb30b7 100644
>>> --- a/arch/powerpc/sysdev/fsl_msi.c
>>> +++ b/arch/powerpc/sysdev/fsl_msi.c
>>> @@ -387,7 +387,6 @@ static int fsl_msi_setup_hwirq(struct fsl_msi *msi, struct platform_device *dev,
>>>    static const struct of_device_id fsl_of_msi_ids[];
>>>    static int fsl_of_msi_probe(struct platform_device *dev)
>>>    {
>>> -	const struct of_device_id *match;
>>>    	struct fsl_msi *msi;
>>>    	struct resource res, msiir;
>>>    	int err, i, j, irq_index, count;
>>> @@ -397,10 +396,7 @@ static int fsl_of_msi_probe(struct platform_device *dev)
>>>    	u32 offset;
>>>    	struct pci_controller *phb;
>>>    
>>> -	match = of_match_device(fsl_of_msi_ids, &dev->dev);
>>> -	if (!match)
>>> -		return -EINVAL;
>>> -	features = match->data;
>>> +	features = of_device_get_match_data(&dev->dev);
>>
>> What happens when features is NULL ?
> 
> I did jump at that one too, but as it turns out, it cannot happen, by
> construction. All the fsl_of_msi_ids[] entries have a non-NULL .data
> pointer, and you only enter probe if you match a fsl_of_msi_ids[]
> entry with the DT.
> 
> So the current check for a NULL match is not something that can happen
> short of some other bug somewhere.
> 

Ok.

Then it would be good to have a sentence explaining that in the commit 
message.

Christophe

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] powerpc/sysdev: Use of_device_get_match_data()
  2022-03-04 14:29     ` Christophe Leroy
@ 2022-03-07  0:44       ` Michael Ellerman
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Ellerman @ 2022-03-07  0:44 UTC (permalink / raw)
  To: Christophe Leroy, Marc Zyngier
  Cc: cgel.zte@gmail.com, Zeal Robot, linux-kernel@vger.kernel.org,
	Minghao Chi, jgg@ziepe.ca, paulus@samba.org, tglx@linutronix.de,
	linuxppc-dev@lists.ozlabs.org

Christophe Leroy <christophe.leroy@csgroup.eu> writes:
> Le 04/03/2022 à 15:26, Marc Zyngier a écrit :
>> On Fri, 04 Mar 2022 13:10:19 +0000,
>> Christophe Leroy <christophe.leroy@csgroup.eu> wrote:
>>> Le 04/03/2022 à 02:18, cgel.zte@gmail.com a écrit :
>>>> From: Minghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
>>>>
>>>> Use of_device_get_match_data() to simplify the code.
>>>>
>>>> Reported-by: Zeal Robot <zealci@zte.com.cn>
>>>> Signed-off-by: Minghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
>>>> ---
>>>>    arch/powerpc/sysdev/fsl_msi.c | 6 +-----
>>>>    1 file changed, 1 insertion(+), 5 deletions(-)
>>>>
>>>> diff --git a/arch/powerpc/sysdev/fsl_msi.c b/arch/powerpc/sysdev/fsl_msi.c
>>>> index b3475ae9f236..9d135bbb30b7 100644
>>>> --- a/arch/powerpc/sysdev/fsl_msi.c
>>>> +++ b/arch/powerpc/sysdev/fsl_msi.c
>>>> @@ -387,7 +387,6 @@ static int fsl_msi_setup_hwirq(struct fsl_msi *msi, struct platform_device *dev,
>>>>    static const struct of_device_id fsl_of_msi_ids[];
>>>>    static int fsl_of_msi_probe(struct platform_device *dev)
>>>>    {
>>>> -	const struct of_device_id *match;
>>>>    	struct fsl_msi *msi;
>>>>    	struct resource res, msiir;
>>>>    	int err, i, j, irq_index, count;
>>>> @@ -397,10 +396,7 @@ static int fsl_of_msi_probe(struct platform_device *dev)
>>>>    	u32 offset;
>>>>    	struct pci_controller *phb;
>>>>    
>>>> -	match = of_match_device(fsl_of_msi_ids, &dev->dev);
>>>> -	if (!match)
>>>> -		return -EINVAL;
>>>> -	features = match->data;
>>>> +	features = of_device_get_match_data(&dev->dev);
>>>
>>> What happens when features is NULL ?
>> 
>> I did jump at that one too, but as it turns out, it cannot happen, by
>> construction. All the fsl_of_msi_ids[] entries have a non-NULL .data
>> pointer, and you only enter probe if you match a fsl_of_msi_ids[]
>> entry with the DT.
>> 
>> So the current check for a NULL match is not something that can happen
>> short of some other bug somewhere.
>> 
>
> Ok.
>
> Then it would be good to have a sentence explaining that in the commit 
> message.

Yes I agree. Too many of these cleanup patches assume the reviewer is
intimately familiar with the details of the new API/helper and don't
explain things fully in the change log.

The helper is:

const void *of_device_get_match_data(const struct device *dev)
{
	const struct of_device_id *match;

	match = of_match_device(dev->driver->of_match_table, dev);
	if (!match)
		return NULL;

	return match->data;
}

So as Marc says, if we're in probe then there must be a match.

IMHO there should be a check for match->data being NULL. Although the
current match table contains a non-NULL data for every element, that
could easily change in future (although this driver will probably never
be updated).

The forward declaration of fsl_of_msi_ids should also be removed, as it
will no longer be necessary.

cheers

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-03-07  0:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-04  1:18 [PATCH] powerpc/sysdev: Use of_device_get_match_data() cgel.zte
2022-03-04 13:10 ` Christophe Leroy
2022-03-04 14:26   ` Marc Zyngier
2022-03-04 14:29     ` Christophe Leroy
2022-03-07  0:44       ` Michael Ellerman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox