Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: Mihaela Muraru <mihaela.muraru21@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Mihaela Muraru and committed by
Greg Kroah-Hartman
2ffd3860 95f539b6

+8 -8
+8 -8
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_2835_arm.c
··· 381 381 } 382 382 383 383 /* There is a potential problem with partial cache lines (pages?) 384 - ** at the ends of the block when reading. If the CPU accessed anything in 385 - ** the same line (page?) then it may have pulled old data into the cache, 386 - ** obscuring the new data underneath. We can solve this by transferring the 387 - ** partial cache lines separately, and allowing the ARM to copy into the 388 - ** cached area. 389 - */ 384 + * at the ends of the block when reading. If the CPU accessed anything in 385 + * the same line (page?) then it may have pulled old data into the cache, 386 + * obscuring the new data underneath. We can solve this by transferring the 387 + * partial cache lines separately, and allowing the ARM to copy into the 388 + * cached area. 389 + */ 390 390 391 391 static struct vchiq_pagelist_info * 392 392 create_pagelist(char __user *buf, size_t count, unsigned short type, ··· 413 413 sizeof(struct vchiq_pagelist_info); 414 414 415 415 /* Allocate enough storage to hold the page pointers and the page 416 - ** list 417 - */ 416 + * list 417 + */ 418 418 pagelist = dma_zalloc_coherent(g_dev, 419 419 pagelist_size, 420 420 &dma_addr,