Commit d943005a authored by Moshe Green's avatar Moshe Green Committed by Greg Kroah-Hartman

Staging: sm750fb: fix block comment coding style issue in ddk750_chip.c

This is a patch to the ddk750_chip.c file that fixes up two block
comment coding style warnings found by the checkpatch.pl tool
Signed-off-by: default avatarMoshe Green <mgmoshes@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f90416df
......@@ -93,8 +93,10 @@ static void setMemoryClock(unsigned int frequency)
return;
if (frequency) {
/* Set the frequency to the maximum frequency that the DDR Memory can take
which is 336MHz. */
/*
* Set the frequency to the maximum frequency that the DDR Memory can take
* which is 336MHz.
*/
if (frequency > MHz(336))
frequency = MHz(336);
......
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