Commit 2ffd3860 authored by Mihaela Muraru's avatar Mihaela Muraru Committed by Greg Kroah-Hartman

staging: vc04_services: Fix comment block coding style

Remove the unnecessary '*' character and align the comment block to fit
the coding style used by linux kernel organization.
Signed-off-by: default avatarMihaela Muraru <mihaela.muraru21@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 95f539b6
...@@ -381,12 +381,12 @@ cleanup_pagelistinfo(struct vchiq_pagelist_info *pagelistinfo) ...@@ -381,12 +381,12 @@ cleanup_pagelistinfo(struct vchiq_pagelist_info *pagelistinfo)
} }
/* There is a potential problem with partial cache lines (pages?) /* There is a potential problem with partial cache lines (pages?)
** at the ends of the block when reading. If the CPU accessed anything in * at the ends of the block when reading. If the CPU accessed anything in
** the same line (page?) then it may have pulled old data into the cache, * the same line (page?) then it may have pulled old data into the cache,
** obscuring the new data underneath. We can solve this by transferring the * obscuring the new data underneath. We can solve this by transferring the
** partial cache lines separately, and allowing the ARM to copy into the * partial cache lines separately, and allowing the ARM to copy into the
** cached area. * cached area.
*/ */
static struct vchiq_pagelist_info * static struct vchiq_pagelist_info *
create_pagelist(char __user *buf, size_t count, unsigned short type, create_pagelist(char __user *buf, size_t count, unsigned short type,
...@@ -413,7 +413,7 @@ create_pagelist(char __user *buf, size_t count, unsigned short type, ...@@ -413,7 +413,7 @@ create_pagelist(char __user *buf, size_t count, unsigned short type,
sizeof(struct vchiq_pagelist_info); sizeof(struct vchiq_pagelist_info);
/* Allocate enough storage to hold the page pointers and the page /* Allocate enough storage to hold the page pointers and the page
** list * list
*/ */
pagelist = dma_zalloc_coherent(g_dev, pagelist = dma_zalloc_coherent(g_dev,
pagelist_size, pagelist_size,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment