mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-05 17:03:47 -04:00
staging: sm750fb: fix block comments errors in ddk750_display.c
WARNING: Block comments use * on subsequent lines WARNING: Block comments use a trailing */ on a separate line WARNING: Block comments use * on subsequent lines WARNING: Block comments use a trailing */ on a separate line Signed-off-by: yeongjun Kim <iam.yeongjunkim@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
d943005ac0
commit
c9d67dc41d
@@ -68,8 +68,10 @@ static void waitNextVerticalSync(int ctrl, int delay)
|
||||
if (!ctrl) {
|
||||
/* primary controller */
|
||||
|
||||
/* Do not wait when the Primary PLL is off or display control is already off.
|
||||
This will prevent the software to wait forever. */
|
||||
/*
|
||||
* Do not wait when the Primary PLL is off or display control is
|
||||
* already off. This will prevent the software to wait forever.
|
||||
*/
|
||||
if (!(PEEK32(PANEL_PLL_CTRL) & PLL_CTRL_POWER) ||
|
||||
!(PEEK32(PANEL_DISPLAY_CTRL) & DISPLAY_CTRL_TIMING)) {
|
||||
return;
|
||||
@@ -88,9 +90,10 @@ static void waitNextVerticalSync(int ctrl, int delay)
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
/* Do not wait when the Primary PLL is off or display control is already off.
|
||||
This will prevent the software to wait forever. */
|
||||
/*
|
||||
* Do not wait when the Primary PLL is off or display control is
|
||||
* already off. This will prevent the software to wait forever.
|
||||
*/
|
||||
if (!(PEEK32(CRT_PLL_CTRL) & PLL_CTRL_POWER) ||
|
||||
!(PEEK32(CRT_DISPLAY_CTRL) & DISPLAY_CTRL_TIMING)) {
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user