]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
soc: ti: knav_dma: fix typos in trace message
authorMurali Karicheri <m-karicheri2@ti.com>
Fri, 6 Jan 2017 19:05:45 +0000 (11:05 -0800)
committerSantosh Shilimkar <ssantosh@kernel.org>
Fri, 6 Jan 2017 19:05:45 +0000 (11:05 -0800)
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>
Signed-off-by: Santosh Shilimkar <ssantosh@kernel.org>
drivers/soc/ti/knav_dma.c

index 1a7b5caa127b55ca58275520fd71fa368ae91eea..ecebe2eecc3aac5058de888817b719f42934d526 100644 (file)
@@ -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);