All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] serial-Tegra: Adjustments for two function implementations
@ 2017-12-07 20:18 ` SF Markus Elfring
  0 siblings, 0 replies; 19+ messages in thread
From: SF Markus Elfring @ 2017-12-07 20:18 UTC (permalink / raw)
  To: linux-serial, linux-tegra, Greg Kroah-Hartman, Jiri Slaby,
	Jonathan Hunter, Laxman Dewangan, Thierry Reding
  Cc: LKML, kernel-janitors

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Thu, 7 Dec 2017 21:12:34 +0100

Two update suggestions were taken into account
from static source code analysis.

Markus Elfring (2):
  Delete an error message for a failed memory allocation in tegra_uart_probe()
  Fix a typo in a comment line

 drivers/tty/serial/serial-tegra.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

-- 
2.15.1

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

* [PATCH 0/2] serial-Tegra: Adjustments for two function implementations
@ 2017-12-07 20:18 ` SF Markus Elfring
  0 siblings, 0 replies; 19+ messages in thread
From: SF Markus Elfring @ 2017-12-07 20:18 UTC (permalink / raw)
  To: linux-serial, linux-tegra, Greg Kroah-Hartman, Jiri Slaby,
	Jonathan Hunter, Laxman Dewangan, Thierry Reding
  Cc: LKML, kernel-janitors

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Thu, 7 Dec 2017 21:12:34 +0100

Two update suggestions were taken into account
from static source code analysis.

Markus Elfring (2):
  Delete an error message for a failed memory allocation in tegra_uart_probe()
  Fix a typo in a comment line

 drivers/tty/serial/serial-tegra.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

-- 
2.15.1


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

* [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_probe()
  2017-12-07 20:18 ` SF Markus Elfring
  (?)
@ 2017-12-07 20:19     ` SF Markus Elfring
  -1 siblings, 0 replies; 19+ messages in thread
From: SF Markus Elfring @ 2017-12-07 20:19 UTC (permalink / raw)
  To: linux-serial-u79uwXL29TY76Z2rM5mHXA,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA, Greg Kroah-Hartman,
	Jiri Slaby, Jonathan Hunter, Laxman Dewangan, Thierry Reding
  Cc: LKML, kernel-janitors-u79uwXL29TY76Z2rM5mHXA

From: Markus Elfring <elfring-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
Date: Thu, 7 Dec 2017 21:00:05 +0100

Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
---
 drivers/tty/serial/serial-tegra.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/tty/serial/serial-tegra.c b/drivers/tty/serial/serial-tegra.c
index af2a29cfbbe9..46233c5974f1 100644
--- a/drivers/tty/serial/serial-tegra.c
+++ b/drivers/tty/serial/serial-tegra.c
@@ -1265,10 +1265,8 @@ static int tegra_uart_probe(struct platform_device *pdev)
 	cdata = match->data;
 
 	tup = devm_kzalloc(&pdev->dev, sizeof(*tup), GFP_KERNEL);
-	if (!tup) {
-		dev_err(&pdev->dev, "Failed to allocate memory for tup\n");
+	if (!tup)
 		return -ENOMEM;
-	}
 
 	ret = tegra_uart_parse_dt(pdev, tup);
 	if (ret < 0)
-- 
2.15.1

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

* [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_probe()
@ 2017-12-07 20:19     ` SF Markus Elfring
  0 siblings, 0 replies; 19+ messages in thread
From: SF Markus Elfring @ 2017-12-07 20:19 UTC (permalink / raw)
  To: linux-serial, linux-tegra, Greg Kroah-Hartman, Jiri Slaby,
	Jonathan Hunter, Laxman Dewangan, Thierry Reding
  Cc: LKML, kernel-janitors

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Thu, 7 Dec 2017 21:00:05 +0100

Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 drivers/tty/serial/serial-tegra.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/tty/serial/serial-tegra.c b/drivers/tty/serial/serial-tegra.c
index af2a29cfbbe9..46233c5974f1 100644
--- a/drivers/tty/serial/serial-tegra.c
+++ b/drivers/tty/serial/serial-tegra.c
@@ -1265,10 +1265,8 @@ static int tegra_uart_probe(struct platform_device *pdev)
 	cdata = match->data;
 
 	tup = devm_kzalloc(&pdev->dev, sizeof(*tup), GFP_KERNEL);
-	if (!tup) {
-		dev_err(&pdev->dev, "Failed to allocate memory for tup\n");
+	if (!tup)
 		return -ENOMEM;
-	}
 
 	ret = tegra_uart_parse_dt(pdev, tup);
 	if (ret < 0)
-- 
2.15.1

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

* [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_prob
@ 2017-12-07 20:19     ` SF Markus Elfring
  0 siblings, 0 replies; 19+ messages in thread
From: SF Markus Elfring @ 2017-12-07 20:19 UTC (permalink / raw)
  To: linux-serial-u79uwXL29TY76Z2rM5mHXA,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA, Greg Kroah-Hartman,
	Jiri Slaby, Jonathan Hunter, Laxman Dewangan, Thierry Reding
  Cc: LKML, kernel-janitors-u79uwXL29TY76Z2rM5mHXA

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Thu, 7 Dec 2017 21:00:05 +0100

Omit an extra message for a memory allocation failure in this function.

This issue was detected by using the Coccinelle software.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 drivers/tty/serial/serial-tegra.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/drivers/tty/serial/serial-tegra.c b/drivers/tty/serial/serial-tegra.c
index af2a29cfbbe9..46233c5974f1 100644
--- a/drivers/tty/serial/serial-tegra.c
+++ b/drivers/tty/serial/serial-tegra.c
@@ -1265,10 +1265,8 @@ static int tegra_uart_probe(struct platform_device *pdev)
 	cdata = match->data;
 
 	tup = devm_kzalloc(&pdev->dev, sizeof(*tup), GFP_KERNEL);
-	if (!tup) {
-		dev_err(&pdev->dev, "Failed to allocate memory for tup\n");
+	if (!tup)
 		return -ENOMEM;
-	}
 
 	ret = tegra_uart_parse_dt(pdev, tup);
 	if (ret < 0)
-- 
2.15.1


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

* [PATCH 2/2] serial: tegra: Fix a typo in a comment line
  2017-12-07 20:18 ` SF Markus Elfring
@ 2017-12-07 20:21   ` SF Markus Elfring
  -1 siblings, 0 replies; 19+ messages in thread
From: SF Markus Elfring @ 2017-12-07 20:21 UTC (permalink / raw)
  To: linux-serial, linux-tegra, Greg Kroah-Hartman, Jiri Slaby,
	Jonathan Hunter, Laxman Dewangan, Thierry Reding
  Cc: LKML, kernel-janitors, trivial

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Thu, 7 Dec 2017 21:06:25 +0100

Delete a duplicate character in a word of this description.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 drivers/tty/serial/serial-tegra.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/tty/serial/serial-tegra.c b/drivers/tty/serial/serial-tegra.c
index 46233c5974f1..a731b2d61d3e 100644
--- a/drivers/tty/serial/serial-tegra.c
+++ b/drivers/tty/serial/serial-tegra.c
@@ -888,7 +888,7 @@ static int tegra_uart_hw_init(struct tegra_uart_port *tup)
 	 * EORD is different interrupt than RX_TIMEOUT - RX_TIMEOUT occurs when
 	 * the DATA is sitting in the FIFO and couldn't be transferred to the
 	 * DMA as the DMA size alignment(4 bytes) is not met. EORD will be
-	 * triggered when there is a pause of the incomming data stream for 4
+	 * triggered when there is a pause of the incoming data stream for 4
 	 * characters long.
 	 *
 	 * For pauses in the data which is not aligned to 4 bytes, we get
-- 
2.15.1

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

* [PATCH 2/2] serial: tegra: Fix a typo in a comment line
@ 2017-12-07 20:21   ` SF Markus Elfring
  0 siblings, 0 replies; 19+ messages in thread
From: SF Markus Elfring @ 2017-12-07 20:21 UTC (permalink / raw)
  To: linux-serial, linux-tegra, Greg Kroah-Hartman, Jiri Slaby,
	Jonathan Hunter, Laxman Dewangan, Thierry Reding
  Cc: LKML, kernel-janitors, trivial

From: Markus Elfring <elfring@users.sourceforge.net>
Date: Thu, 7 Dec 2017 21:06:25 +0100

Delete a duplicate character in a word of this description.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
---
 drivers/tty/serial/serial-tegra.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/tty/serial/serial-tegra.c b/drivers/tty/serial/serial-tegra.c
index 46233c5974f1..a731b2d61d3e 100644
--- a/drivers/tty/serial/serial-tegra.c
+++ b/drivers/tty/serial/serial-tegra.c
@@ -888,7 +888,7 @@ static int tegra_uart_hw_init(struct tegra_uart_port *tup)
 	 * EORD is different interrupt than RX_TIMEOUT - RX_TIMEOUT occurs when
 	 * the DATA is sitting in the FIFO and couldn't be transferred to the
 	 * DMA as the DMA size alignment(4 bytes) is not met. EORD will be
-	 * triggered when there is a pause of the incomming data stream for 4
+	 * triggered when there is a pause of the incoming data stream for 4
 	 * characters long.
 	 *
 	 * For pauses in the data which is not aligned to 4 bytes, we get
-- 
2.15.1


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

* Re: [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_probe()
  2017-12-07 20:19     ` [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_probe() SF Markus Elfring
  (?)
@ 2017-12-08  9:37         ` Laxman Dewangan
  -1 siblings, 0 replies; 19+ messages in thread
From: Laxman Dewangan @ 2017-12-08  9:37 UTC (permalink / raw)
  To: SF Markus Elfring, linux-serial-u79uwXL29TY76Z2rM5mHXA,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA, Greg Kroah-Hartman,
	Jiri Slaby, Jonathan Hunter, Thierry Reding
  Cc: LKML, kernel-janitors-u79uwXL29TY76Z2rM5mHXA



On Friday 08 December 2017 01:49 AM, SF Markus Elfring wrote:
> From: Markus Elfring <elfring-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
> Date: Thu, 7 Dec 2017 21:00:05 +0100
>
> Omit an extra message for a memory allocation failure in this function.
>
> This issue was detected by using the Coccinelle software.
>

Acked-by: Laxman Dewangan <ldewangan-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>

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

* Re: [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_probe()
@ 2017-12-08  9:37         ` Laxman Dewangan
  0 siblings, 0 replies; 19+ messages in thread
From: Laxman Dewangan @ 2017-12-08  9:37 UTC (permalink / raw)
  To: SF Markus Elfring, linux-serial, linux-tegra, Greg Kroah-Hartman,
	Jiri Slaby, Jonathan Hunter, Thierry Reding
  Cc: LKML, kernel-janitors



On Friday 08 December 2017 01:49 AM, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Thu, 7 Dec 2017 21:00:05 +0100
>
> Omit an extra message for a memory allocation failure in this function.
>
> This issue was detected by using the Coccinelle software.
>

Acked-by: Laxman Dewangan <ldewangan@nvidia.com>

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

* Re: [PATCH 2/2] serial: tegra: Fix a typo in a comment line
  2017-12-07 20:21   ` SF Markus Elfring
  (?)
@ 2017-12-08  9:37       ` Laxman Dewangan
  -1 siblings, 0 replies; 19+ messages in thread
From: Laxman Dewangan @ 2017-12-08  9:37 UTC (permalink / raw)
  To: SF Markus Elfring, linux-serial-u79uwXL29TY76Z2rM5mHXA,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA, Greg Kroah-Hartman,
	Jiri Slaby, Jonathan Hunter, Thierry Reding
  Cc: LKML, kernel-janitors-u79uwXL29TY76Z2rM5mHXA,
	trivial-DgEjT+Ai2ygdnm+yROfE0A



On Friday 08 December 2017 01:51 AM, SF Markus Elfring wrote:
> From: Markus Elfring <elfring-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
> Date: Thu, 7 Dec 2017 21:06:25 +0100
>
> Delete a duplicate character in a word of this description.
>

Acked-by: Laxman Dewangan <ldewangan-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>

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

* Re: [PATCH 2/2] serial: tegra: Fix a typo in a comment line
@ 2017-12-08  9:37       ` Laxman Dewangan
  0 siblings, 0 replies; 19+ messages in thread
From: Laxman Dewangan @ 2017-12-08  9:37 UTC (permalink / raw)
  To: SF Markus Elfring, linux-serial, linux-tegra, Greg Kroah-Hartman,
	Jiri Slaby, Jonathan Hunter, Thierry Reding
  Cc: LKML, kernel-janitors, trivial



On Friday 08 December 2017 01:51 AM, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Thu, 7 Dec 2017 21:06:25 +0100
>
> Delete a duplicate character in a word of this description.
>

Acked-by: Laxman Dewangan <ldewangan@nvidia.com>

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

* Re: [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_
@ 2017-12-08  9:37         ` Laxman Dewangan
  0 siblings, 0 replies; 19+ messages in thread
From: Laxman Dewangan @ 2017-12-08  9:49 UTC (permalink / raw)
  To: SF Markus Elfring, linux-serial-u79uwXL29TY76Z2rM5mHXA,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA, Greg Kroah-Hartman,
	Jiri Slaby, Jonathan Hunter, Thierry Reding
  Cc: LKML, kernel-janitors-u79uwXL29TY76Z2rM5mHXA



On Friday 08 December 2017 01:49 AM, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Thu, 7 Dec 2017 21:00:05 +0100
>
> Omit an extra message for a memory allocation failure in this function.
>
> This issue was detected by using the Coccinelle software.
>

Acked-by: Laxman Dewangan <ldewangan@nvidia.com>


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

* Re: [PATCH 2/2] serial: tegra: Fix a typo in a comment line
@ 2017-12-08  9:37       ` Laxman Dewangan
  0 siblings, 0 replies; 19+ messages in thread
From: Laxman Dewangan @ 2017-12-08  9:49 UTC (permalink / raw)
  To: SF Markus Elfring, linux-serial-u79uwXL29TY76Z2rM5mHXA,
	linux-tegra-u79uwXL29TY76Z2rM5mHXA, Greg Kroah-Hartman,
	Jiri Slaby, Jonathan Hunter, Thierry Reding
  Cc: LKML, kernel-janitors-u79uwXL29TY76Z2rM5mHXA,
	trivial-DgEjT+Ai2ygdnm+yROfE0A



On Friday 08 December 2017 01:51 AM, SF Markus Elfring wrote:
> From: Markus Elfring <elfring@users.sourceforge.net>
> Date: Thu, 7 Dec 2017 21:06:25 +0100
>
> Delete a duplicate character in a word of this description.
>

Acked-by: Laxman Dewangan <ldewangan@nvidia.com>

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

* Re: [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_probe()
  2017-12-08  9:37         ` [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_probe() Laxman Dewangan
  (?)
@ 2017-12-08 10:42           ` Jon Hunter
  -1 siblings, 0 replies; 19+ messages in thread
From: Jon Hunter @ 2017-12-08 10:42 UTC (permalink / raw)
  To: Laxman Dewangan, SF Markus Elfring, linux-serial, linux-tegra,
	Greg Kroah-Hartman, Jiri Slaby, Thierry Reding
  Cc: LKML, kernel-janitors


On 08/12/17 09:37, Laxman Dewangan wrote:
> On Friday 08 December 2017 01:49 AM, SF Markus Elfring wrote:
>> From: Markus Elfring <elfring@users.sourceforge.net>
>> Date: Thu, 7 Dec 2017 21:00:05 +0100
>>
>> Omit an extra message for a memory allocation failure in this function.
>>
>> This issue was detected by using the Coccinelle software.
>>
> 
> Acked-by: Laxman Dewangan <ldewangan@nvidia.com>

Acked-by: Jon Hunter <jonathanh@nvidia.com>

Thanks!
Jon

-- 
nvpublic

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

* Re: [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_probe()
@ 2017-12-08 10:42           ` Jon Hunter
  0 siblings, 0 replies; 19+ messages in thread
From: Jon Hunter @ 2017-12-08 10:42 UTC (permalink / raw)
  To: Laxman Dewangan, SF Markus Elfring, linux-serial, linux-tegra,
	Greg Kroah-Hartman, Jiri Slaby, Thierry Reding
  Cc: LKML, kernel-janitors


On 08/12/17 09:37, Laxman Dewangan wrote:
> On Friday 08 December 2017 01:49 AM, SF Markus Elfring wrote:
>> From: Markus Elfring <elfring@users.sourceforge.net>
>> Date: Thu, 7 Dec 2017 21:00:05 +0100
>>
>> Omit an extra message for a memory allocation failure in this function.
>>
>> This issue was detected by using the Coccinelle software.
>>
> 
> Acked-by: Laxman Dewangan <ldewangan@nvidia.com>

Acked-by: Jon Hunter <jonathanh@nvidia.com>

Thanks!
Jon

-- 
nvpublic

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

* Re: [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_
@ 2017-12-08 10:42           ` Jon Hunter
  0 siblings, 0 replies; 19+ messages in thread
From: Jon Hunter @ 2017-12-08 10:42 UTC (permalink / raw)
  To: Laxman Dewangan, SF Markus Elfring, linux-serial, linux-tegra,
	Greg Kroah-Hartman, Jiri Slaby, Thierry Reding
  Cc: LKML, kernel-janitors


On 08/12/17 09:37, Laxman Dewangan wrote:
> On Friday 08 December 2017 01:49 AM, SF Markus Elfring wrote:
>> From: Markus Elfring <elfring@users.sourceforge.net>
>> Date: Thu, 7 Dec 2017 21:00:05 +0100
>>
>> Omit an extra message for a memory allocation failure in this function.
>>
>> This issue was detected by using the Coccinelle software.
>>
> 
> Acked-by: Laxman Dewangan <ldewangan@nvidia.com>

Acked-by: Jon Hunter <jonathanh@nvidia.com>

Thanks!
Jon

-- 
nvpublic

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

* Re: [PATCH 2/2] serial: tegra: Fix a typo in a comment line
  2017-12-08  9:37       ` Laxman Dewangan
  (?)
@ 2017-12-08 10:42         ` Jon Hunter
  -1 siblings, 0 replies; 19+ messages in thread
From: Jon Hunter @ 2017-12-08 10:42 UTC (permalink / raw)
  To: Laxman Dewangan, SF Markus Elfring, linux-serial, linux-tegra,
	Greg Kroah-Hartman, Jiri Slaby, Thierry Reding
  Cc: LKML, kernel-janitors, trivial


On 08/12/17 09:37, Laxman Dewangan wrote:
> 
> 
> On Friday 08 December 2017 01:51 AM, SF Markus Elfring wrote:
>> From: Markus Elfring <elfring@users.sourceforge.net>
>> Date: Thu, 7 Dec 2017 21:06:25 +0100
>>
>> Delete a duplicate character in a word of this description.
>>
> 
> Acked-by: Laxman Dewangan <ldewangan@nvidia.com>

Acked-by: Jon Hunter <jonathanh@nvidia.com>

Thanks!
Jon

-- 
nvpublic

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

* Re: [PATCH 2/2] serial: tegra: Fix a typo in a comment line
@ 2017-12-08 10:42         ` Jon Hunter
  0 siblings, 0 replies; 19+ messages in thread
From: Jon Hunter @ 2017-12-08 10:42 UTC (permalink / raw)
  To: Laxman Dewangan, SF Markus Elfring, linux-serial, linux-tegra,
	Greg Kroah-Hartman, Jiri Slaby, Thierry Reding
  Cc: LKML, kernel-janitors, trivial


On 08/12/17 09:37, Laxman Dewangan wrote:
> 
> 
> On Friday 08 December 2017 01:51 AM, SF Markus Elfring wrote:
>> From: Markus Elfring <elfring@users.sourceforge.net>
>> Date: Thu, 7 Dec 2017 21:06:25 +0100
>>
>> Delete a duplicate character in a word of this description.
>>
> 
> Acked-by: Laxman Dewangan <ldewangan@nvidia.com>

Acked-by: Jon Hunter <jonathanh@nvidia.com>

Thanks!
Jon

-- 
nvpublic

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

* Re: [PATCH 2/2] serial: tegra: Fix a typo in a comment line
@ 2017-12-08 10:42         ` Jon Hunter
  0 siblings, 0 replies; 19+ messages in thread
From: Jon Hunter @ 2017-12-08 10:42 UTC (permalink / raw)
  To: Laxman Dewangan, SF Markus Elfring, linux-serial, linux-tegra,
	Greg Kroah-Hartman, Jiri Slaby, Thierry Reding
  Cc: LKML, kernel-janitors, trivial


On 08/12/17 09:37, Laxman Dewangan wrote:
> 
> 
> On Friday 08 December 2017 01:51 AM, SF Markus Elfring wrote:
>> From: Markus Elfring <elfring@users.sourceforge.net>
>> Date: Thu, 7 Dec 2017 21:06:25 +0100
>>
>> Delete a duplicate character in a word of this description.
>>
> 
> Acked-by: Laxman Dewangan <ldewangan@nvidia.com>

Acked-by: Jon Hunter <jonathanh@nvidia.com>

Thanks!
Jon

-- 
nvpublic

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

end of thread, other threads:[~2017-12-08 10:42 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-12-07 20:18 [PATCH 0/2] serial-Tegra: Adjustments for two function implementations SF Markus Elfring
2017-12-07 20:18 ` SF Markus Elfring
     [not found] ` <605adc2b-3591-86fc-410a-370f48dfb14e-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
2017-12-07 20:19   ` [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_probe() SF Markus Elfring
2017-12-07 20:19     ` [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_prob SF Markus Elfring
2017-12-07 20:19     ` [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_probe() SF Markus Elfring
     [not found]     ` <aee3d79d-a59e-a3fd-6c6b-45ee46132cc6-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
2017-12-08  9:37       ` Laxman Dewangan
2017-12-08  9:49         ` [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_ Laxman Dewangan
2017-12-08  9:37         ` [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_probe() Laxman Dewangan
2017-12-08 10:42         ` Jon Hunter
2017-12-08 10:42           ` [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_ Jon Hunter
2017-12-08 10:42           ` [PATCH 1/2] serial: tegra: Delete an error message for a failed memory allocation in tegra_uart_probe() Jon Hunter
2017-12-07 20:21 ` [PATCH 2/2] serial: tegra: Fix a typo in a comment line SF Markus Elfring
2017-12-07 20:21   ` SF Markus Elfring
     [not found]   ` <2b7ff65b-dcb8-996b-1f34-f1bff28bb515-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
2017-12-08  9:37     ` Laxman Dewangan
2017-12-08  9:49       ` Laxman Dewangan
2017-12-08  9:37       ` Laxman Dewangan
2017-12-08 10:42       ` Jon Hunter
2017-12-08 10:42         ` Jon Hunter
2017-12-08 10:42         ` Jon Hunter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.