浏览代码

drivers: base: dma-mapping: Erase blank space after pointer

This patch fixes the following checkpatch.pl error:
ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: Marius Cristian Eseanu <eseanu.cristian@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Marius Cristian Eseanu 10 年之前
父节点
当前提交
6d42d79e64
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/base/dma-mapping.c

+ 1 - 1
drivers/base/dma-mapping.c

@@ -62,7 +62,7 @@ static int dmam_match(struct device *dev, void *res, void *match_data)
  * RETURNS:
  * Pointer to allocated memory on success, NULL on failure.
  */
-void * dmam_alloc_coherent(struct device *dev, size_t size,
+void *dmam_alloc_coherent(struct device *dev, size_t size,
 			   dma_addr_t *dma_handle, gfp_t gfp)
 {
 	struct dma_devres *dr;