1
0
Fork 0

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: Moshe Green <mgmoshes@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Moshe Green 2016-06-06 22:04:32 +03:00 committed by Greg Kroah-Hartman
parent f90416df64
commit d943005ac0
1 changed files with 4 additions and 2 deletions

View File

@ -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);