diff mbox

[1/2] soc: ti: knav_dma: fix typos in trace message

Message ID 1482272663-29829-1-git-send-email-m-karicheri2@ti.com (mailing list archive)
State New, archived
Headers show

Commit Message

Murali Karicheri Dec. 20, 2016, 10:24 p.m. UTC
This patch fixes some typos in the trace message

Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
Signed-off-by: Sekhar Nori <nsekhar@ti.com>
---
 drivers/soc/ti/knav_dma.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Santosh Shilimkar Dec. 21, 2016, 1:01 a.m. UTC | #1
On 12/20/2016 2:24 PM, Murali Karicheri wrote:
> This patch fixes some typos in the trace message
>
> Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
> ---
Patch 1 and 2 looks fine. Will pick them for next
merge window. Thanks !!

Regards,
Santosh
Murali Karicheri Jan. 5, 2017, 7:08 p.m. UTC | #2
On 12/20/2016 08:01 PM, Santosh Shilimkar wrote:
> On 12/20/2016 2:24 PM, Murali Karicheri wrote:
>> This patch fixes some typos in the trace message
>>
>> Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
>> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
>> ---
> Patch 1 and 2 looks fine. Will pick them for next
> merge window. Thanks !!
> 
> Regards,
> Santosh
> 
Santosh,

Could you send this to linux-next please so that I can
cherry-pick them for our internal release?
Santosh Shilimkar Jan. 5, 2017, 7:13 p.m. UTC | #3
On 1/5/2017 11:08 AM, Murali Karicheri wrote:
> On 12/20/2016 08:01 PM, Santosh Shilimkar wrote:
>> On 12/20/2016 2:24 PM, Murali Karicheri wrote:
>>> This patch fixes some typos in the trace message
>>>
>>> Signed-off-by: Murali Karicheri <m-karicheri2@ti.com>
>>> Signed-off-by: Sekhar Nori <nsekhar@ti.com>
>>> ---
>> Patch 1 and 2 looks fine. Will pick them for next
>> merge window. Thanks !!
>>
>> Regards,
>> Santosh
>>
> Santosh,
>
> Could you send this to linux-next please so that I can
> cherry-pick them for our internal release?
>
Am collecting few more patches Murali. Hopefully
I will be able to push that to linux-next next week.

Regards,
Santosh
diff mbox

Patch

diff --git a/drivers/soc/ti/knav_dma.c b/drivers/soc/ti/knav_dma.c
index 1a7b5ca..ecebe2e 100644
--- a/drivers/soc/ti/knav_dma.c
+++ b/drivers/soc/ti/knav_dma.c
@@ -395,7 +395,7 @@  static int of_channel_match_helper(struct device_node *np, const char *name,
 
 	if (of_parse_phandle_with_fixed_args(np, "ti,navigator-dmas",
 					1, index, &args)) {
-		dev_err(kdev->dev, "Missing the pahndle args name %s\n", name);
+		dev_err(kdev->dev, "Missing the phandle args name %s\n", name);
 		return -ENODEV;
 	}
 
@@ -436,7 +436,7 @@  void *knav_dma_open_channel(struct device *dev, const char *name,
 	}
 
 	dev_dbg(kdev->dev, "initializing %s channel %d from DMA %s\n",
-		  config->direction == DMA_MEM_TO_DEV   ? "transmit" :
+		  config->direction == DMA_MEM_TO_DEV ? "transmit" :
 		  config->direction == DMA_DEV_TO_MEM ? "receive"  :
 		  "unknown", chan_num, instance);