* [PATCH] tty: serial: ma35d1: Add a NULL check for of_node
@ 2024-06-11 9:22 Jacky Huang
2024-06-11 11:11 ` Greg KH
0 siblings, 1 reply; 5+ messages in thread
From: Jacky Huang @ 2024-06-11 9:22 UTC (permalink / raw)
To: dan.carpenter, gregkh, jirislaby
Cc: linux-arm-kernel, linux-kernel, linux-serial, Jacky Huang
From: Jacky Huang <ychuang3@nuvoton.com>
The pdev->dev.of_node can be NULL if the "serial" node is absent.
Add a NULL check to return an error in such cases.
Signed-off-by: Jacky Huang <ychuang3@nuvoton.com>
---
drivers/tty/serial/ma35d1_serial.c | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/drivers/tty/serial/ma35d1_serial.c b/drivers/tty/serial/ma35d1_serial.c
index 19f0a305cc43..3b4206e815fe 100644
--- a/drivers/tty/serial/ma35d1_serial.c
+++ b/drivers/tty/serial/ma35d1_serial.c
@@ -688,12 +688,13 @@ static int ma35d1serial_probe(struct platform_device *pdev)
struct uart_ma35d1_port *up;
int ret = 0;
- if (pdev->dev.of_node) {
- ret = of_alias_get_id(pdev->dev.of_node, "serial");
- if (ret < 0) {
- dev_err(&pdev->dev, "failed to get alias/pdev id, errno %d\n", ret);
- return ret;
- }
+ if (!pdev->dev.of_node)
+ return -ENODEV;
+
+ ret = of_alias_get_id(pdev->dev.of_node, "serial");
+ if (ret < 0) {
+ dev_err(&pdev->dev, "failed to get alias/pdev id, errno %d\n", ret);
+ return ret;
}
up = &ma35d1serial_ports[ret];
up->port.line = ret;
--
2.34.1
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] tty: serial: ma35d1: Add a NULL check for of_node
2024-06-11 9:22 [PATCH] tty: serial: ma35d1: Add a NULL check for of_node Jacky Huang
@ 2024-06-11 11:11 ` Greg KH
2024-06-12 0:43 ` Jacky Huang
0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2024-06-11 11:11 UTC (permalink / raw)
To: Jacky Huang
Cc: dan.carpenter, jirislaby, linux-arm-kernel, linux-kernel,
linux-serial, Jacky Huang
On Tue, Jun 11, 2024 at 09:22:51AM +0000, Jacky Huang wrote:
> From: Jacky Huang <ychuang3@nuvoton.com>
>
> The pdev->dev.of_node can be NULL if the "serial" node is absent.
> Add a NULL check to return an error in such cases.
>
> Signed-off-by: Jacky Huang <ychuang3@nuvoton.com>
> ---
> drivers/tty/serial/ma35d1_serial.c | 13 +++++++------
> 1 file changed, 7 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/tty/serial/ma35d1_serial.c b/drivers/tty/serial/ma35d1_serial.c
> index 19f0a305cc43..3b4206e815fe 100644
> --- a/drivers/tty/serial/ma35d1_serial.c
> +++ b/drivers/tty/serial/ma35d1_serial.c
> @@ -688,12 +688,13 @@ static int ma35d1serial_probe(struct platform_device *pdev)
> struct uart_ma35d1_port *up;
> int ret = 0;
>
> - if (pdev->dev.of_node) {
> - ret = of_alias_get_id(pdev->dev.of_node, "serial");
> - if (ret < 0) {
> - dev_err(&pdev->dev, "failed to get alias/pdev id, errno %d\n", ret);
> - return ret;
> - }
> + if (!pdev->dev.of_node)
> + return -ENODEV;
> +
> + ret = of_alias_get_id(pdev->dev.of_node, "serial");
> + if (ret < 0) {
> + dev_err(&pdev->dev, "failed to get alias/pdev id, errno %d\n", ret);
> + return ret;
> }
> up = &ma35d1serial_ports[ret];
> up->port.line = ret;
What commit id does this fix?
thanks,
greg k-h
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] tty: serial: ma35d1: Add a NULL check for of_node
2024-06-11 11:11 ` Greg KH
@ 2024-06-12 0:43 ` Jacky Huang
2024-06-12 7:23 ` Greg KH
0 siblings, 1 reply; 5+ messages in thread
From: Jacky Huang @ 2024-06-12 0:43 UTC (permalink / raw)
To: Greg KH
Cc: dan.carpenter, jirislaby, linux-arm-kernel, linux-kernel,
linux-serial, Jacky Huang
Dear Greg,
On 2024/6/11 下午 07:11, Greg KH wrote:
> On Tue, Jun 11, 2024 at 09:22:51AM +0000, Jacky Huang wrote:
>> From: Jacky Huang <ychuang3@nuvoton.com>
>>
>> The pdev->dev.of_node can be NULL if the "serial" node is absent.
>> Add a NULL check to return an error in such cases.
>>
>> Signed-off-by: Jacky Huang <ychuang3@nuvoton.com>
>> ---
>> drivers/tty/serial/ma35d1_serial.c | 13 +++++++------
>> 1 file changed, 7 insertions(+), 6 deletions(-)
>>
>> diff --git a/drivers/tty/serial/ma35d1_serial.c b/drivers/tty/serial/ma35d1_serial.c
>> index 19f0a305cc43..3b4206e815fe 100644
>> --- a/drivers/tty/serial/ma35d1_serial.c
>> +++ b/drivers/tty/serial/ma35d1_serial.c
>> @@ -688,12 +688,13 @@ static int ma35d1serial_probe(struct platform_device *pdev)
>> struct uart_ma35d1_port *up;
>> int ret = 0;
>>
>> - if (pdev->dev.of_node) {
>> - ret = of_alias_get_id(pdev->dev.of_node, "serial");
>> - if (ret < 0) {
>> - dev_err(&pdev->dev, "failed to get alias/pdev id, errno %d\n", ret);
>> - return ret;
>> - }
>> + if (!pdev->dev.of_node)
>> + return -ENODEV;
>> +
>> + ret = of_alias_get_id(pdev->dev.of_node, "serial");
>> + if (ret < 0) {
>> + dev_err(&pdev->dev, "failed to get alias/pdev id, errno %d\n", ret);
>> + return ret;
>> }
>> up = &ma35d1serial_ports[ret];
>> up->port.line = ret;
> What commit id does this fix?
>
> thanks,
>
> greg k-h
This patch fix the in tree ma35d1 serial driver.
The last commit for ma35d1_serial.c is
'6b64f8e360c00f180cffa1806095cdd2abc55b16'.
Best Regards,
Jacky Huang
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] tty: serial: ma35d1: Add a NULL check for of_node
2024-06-12 0:43 ` Jacky Huang
@ 2024-06-12 7:23 ` Greg KH
2024-06-13 2:54 ` Jacky Huang
0 siblings, 1 reply; 5+ messages in thread
From: Greg KH @ 2024-06-12 7:23 UTC (permalink / raw)
To: Jacky Huang
Cc: dan.carpenter, jirislaby, linux-arm-kernel, linux-kernel,
linux-serial, Jacky Huang
On Wed, Jun 12, 2024 at 08:43:54AM +0800, Jacky Huang wrote:
> Dear Greg,
>
>
> On 2024/6/11 下午 07:11, Greg KH wrote:
> > On Tue, Jun 11, 2024 at 09:22:51AM +0000, Jacky Huang wrote:
> > > From: Jacky Huang <ychuang3@nuvoton.com>
> > >
> > > The pdev->dev.of_node can be NULL if the "serial" node is absent.
> > > Add a NULL check to return an error in such cases.
> > >
> > > Signed-off-by: Jacky Huang <ychuang3@nuvoton.com>
> > > ---
> > > drivers/tty/serial/ma35d1_serial.c | 13 +++++++------
> > > 1 file changed, 7 insertions(+), 6 deletions(-)
> > >
> > > diff --git a/drivers/tty/serial/ma35d1_serial.c b/drivers/tty/serial/ma35d1_serial.c
> > > index 19f0a305cc43..3b4206e815fe 100644
> > > --- a/drivers/tty/serial/ma35d1_serial.c
> > > +++ b/drivers/tty/serial/ma35d1_serial.c
> > > @@ -688,12 +688,13 @@ static int ma35d1serial_probe(struct platform_device *pdev)
> > > struct uart_ma35d1_port *up;
> > > int ret = 0;
> > > - if (pdev->dev.of_node) {
> > > - ret = of_alias_get_id(pdev->dev.of_node, "serial");
> > > - if (ret < 0) {
> > > - dev_err(&pdev->dev, "failed to get alias/pdev id, errno %d\n", ret);
> > > - return ret;
> > > - }
> > > + if (!pdev->dev.of_node)
> > > + return -ENODEV;
> > > +
> > > + ret = of_alias_get_id(pdev->dev.of_node, "serial");
> > > + if (ret < 0) {
> > > + dev_err(&pdev->dev, "failed to get alias/pdev id, errno %d\n", ret);
> > > + return ret;
> > > }
> > > up = &ma35d1serial_ports[ret];
> > > up->port.line = ret;
> > What commit id does this fix?
> >
> > thanks,
> >
> > greg k-h
>
> This patch fix the in tree ma35d1 serial driver.
> The last commit for ma35d1_serial.c is
> '6b64f8e360c00f180cffa1806095cdd2abc55b16'.
That is obviously not the commit that causes this problem, which is what
I was looking for here. Shouldn't you include a "Fixes:" line if this
is resolving a bug?
thanks,
greg k-h
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] tty: serial: ma35d1: Add a NULL check for of_node
2024-06-12 7:23 ` Greg KH
@ 2024-06-13 2:54 ` Jacky Huang
0 siblings, 0 replies; 5+ messages in thread
From: Jacky Huang @ 2024-06-13 2:54 UTC (permalink / raw)
To: Greg KH
Cc: dan.carpenter, jirislaby, linux-arm-kernel, linux-kernel,
linux-serial, Jacky Huang
Dear Greg,
On 2024/6/12 下午 03:23, Greg KH wrote:
> On Wed, Jun 12, 2024 at 08:43:54AM +0800, Jacky Huang wrote:
>> Dear Greg,
>>
>>
>> On 2024/6/11 下午 07:11, Greg KH wrote:
>>> On Tue, Jun 11, 2024 at 09:22:51AM +0000, Jacky Huang wrote:
>>>> From: Jacky Huang <ychuang3@nuvoton.com>
>>>>
>>>> The pdev->dev.of_node can be NULL if the "serial" node is absent.
>>>> Add a NULL check to return an error in such cases.
>>>>
>>>> Signed-off-by: Jacky Huang <ychuang3@nuvoton.com>
>>>> ---
>>>> drivers/tty/serial/ma35d1_serial.c | 13 +++++++------
>>>> 1 file changed, 7 insertions(+), 6 deletions(-)
>>>>
>>>> diff --git a/drivers/tty/serial/ma35d1_serial.c b/drivers/tty/serial/ma35d1_serial.c
>>>> index 19f0a305cc43..3b4206e815fe 100644
>>>> --- a/drivers/tty/serial/ma35d1_serial.c
>>>> +++ b/drivers/tty/serial/ma35d1_serial.c
>>>> @@ -688,12 +688,13 @@ static int ma35d1serial_probe(struct platform_device *pdev)
>>>> struct uart_ma35d1_port *up;
>>>> int ret = 0;
>>>> - if (pdev->dev.of_node) {
>>>> - ret = of_alias_get_id(pdev->dev.of_node, "serial");
>>>> - if (ret < 0) {
>>>> - dev_err(&pdev->dev, "failed to get alias/pdev id, errno %d\n", ret);
>>>> - return ret;
>>>> - }
>>>> + if (!pdev->dev.of_node)
>>>> + return -ENODEV;
>>>> +
>>>> + ret = of_alias_get_id(pdev->dev.of_node, "serial");
>>>> + if (ret < 0) {
>>>> + dev_err(&pdev->dev, "failed to get alias/pdev id, errno %d\n", ret);
>>>> + return ret;
>>>> }
>>>> up = &ma35d1serial_ports[ret];
>>>> up->port.line = ret;
>>> What commit id does this fix?
>>>
>>> thanks,
>>>
>>> greg k-h
>> This patch fix the in tree ma35d1 serial driver.
>> The last commit for ma35d1_serial.c is
>> '6b64f8e360c00f180cffa1806095cdd2abc55b16'.
> That is obviously not the commit that causes this problem, which is what
> I was looking for here. Shouldn't you include a "Fixes:" line if this
> is resolving a bug?
>
> thanks,
>
> greg k-h
I got it. The commit that cause this problem is '930cbf92db01'.
And I will send v2 patch with the "Fixes:" line.
Fixes: 930cbf92db01 ("tty: serial: Add Nuvoton ma35d1 serial driver
support")
Best Regards,
Jacky Huang
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-06-13 2:54 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-11 9:22 [PATCH] tty: serial: ma35d1: Add a NULL check for of_node Jacky Huang
2024-06-11 11:11 ` Greg KH
2024-06-12 0:43 ` Jacky Huang
2024-06-12 7:23 ` Greg KH
2024-06-13 2:54 ` Jacky Huang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox