From: Menglong Dong <redacted>
Coccinelle reports a redundant error print in rb532_pata_driver_probe.
As 'platform_get_irq' already prints the error message, error print
here is redundant and can be removed.
Signed-off-by: Menglong Dong <redacted>
---
drivers/ata/pata_rb532_cf.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
From: Sergei Shtylyov <hidden> Date: 2021-01-12 11:16:24
Hello!
On 1/12/21 5:36 AM, menglong8.dong@gmail.com wrote:
quoted hunk
From: Menglong Dong <redacted>
Coccinelle reports a redundant error print in rb532_pata_driver_probe.
As 'platform_get_irq' already prints the error message, error print
here is redundant and can be removed.
Signed-off-by: Menglong Dong <redacted>
---
drivers/ata/pata_rb532_cf.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
Hello, Sergei
On Tue, Jan 12, 2021 at 7:15 PM Sergei Shtylyov
[off-list ref] wrote:
Hello!
On 1/12/21 5:36 AM, menglong8.dong@gmail.com wrote:
[....]
quoted
irq = platform_get_irq(pdev, 0);
- if (irq <= 0) {
- dev_err(&pdev->dev, "no IRQ resource found\n");
+ if (irq <= 0)
return -ENOENT;
This still beaks the probe deferral. :-(
But that's another problem...
[...]
MBR, Sergei
What does this 'MBR' mean? I am a novice~~~
So, is it better to replace 'platform_get_irq' with
'platform_get_irq_optional' here?
--
Best Regards
Menglong Dong
From: Sergei Shtylyov <hidden> Date: 2021-01-14 08:31:04
Hello!
On 13.01.2021 17:04, Menglong Dong wrote:
[...]
quoted
quoted
irq = platform_get_irq(pdev, 0);
- if (irq <= 0) {
- dev_err(&pdev->dev, "no IRQ resource found\n");
+ if (irq <= 0)
return -ENOENT;
This still beaks the probe deferral. :-(
But that's another problem...
[...]
MBR, Sergei
What does this 'MBR' mean? I am a novice~~~
Generally speaking, Master Boot Record. But I also use it to send you My
Best Regards. :-)
So, is it better to replace 'platform_get_irq' with
'platform_get_irq_optional' here?
No. You should stop overriding the result to -ENOENT and pass the result
up the call chain instead. In order to do it, you should only check for (irq < 0).
On Thu, Jan 14, 2021 at 4:30 PM Sergei Shtylyov
[off-list ref] wrote:
[...]
quoted
What does this 'MBR' mean? I am a novice~~~
Generally speaking, Master Boot Record. But I also use it to send you My
Best Regards. :-)
Haha~,
quoted
So, is it better to replace 'platform_get_irq' with
'platform_get_irq_optional' here?
No. You should stop overriding the result to -ENOENT and pass the result
up the call chain instead. In order to do it, you should only check for (irq < 0).
Well, I didn't even notice this. It does seem to be another problem...
---
Best Regards
Menglong Dong
From: Sergei Shtylyov <hidden> Date: 2021-01-14 15:50:34
On 1/12/21 2:15 PM, Sergei Shtylyov wrote:
[...]
quoted
From: Menglong Dong <redacted>
Coccinelle reports a redundant error print in rb532_pata_driver_probe.
As 'platform_get_irq' already prints the error message, error print
here is redundant and can be removed.
Signed-off-by: Menglong Dong <redacted>
---
drivers/ata/pata_rb532_cf.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
This still beaks the probe deferral. :-(
But that's another problem...
BTW, your patch summary looks quite wrong -- we need the prefix to specify the patch locus,
like this:
pata_rb532_cf: remove redundant error printing in the probe() method
I.e. "ata: " may even be omitted (your choise though).