diff options
author | Moshe Green <mgmoshes@gmail.com> | 2016-06-06 22:04:32 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-08-21 19:07:04 +0300 |
commit | d943005ac0902dade9d6641b3d9d5c959bc77a07 (patch) | |
tree | e61fee05d1b6c32813b6273a97b95e71b85a6cf5 /drivers/staging/sm750fb | |
parent | f90416df64a156cfe0708e1305dce5f23399cd18 (diff) | |
download | linux-d943005ac0902dade9d6641b3d9d5c959bc77a07.tar.xz |
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>
Diffstat (limited to 'drivers/staging/sm750fb')
-rw-r--r-- | drivers/staging/sm750fb/ddk750_chip.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm750fb/ddk750_chip.c index 4db80db5a4b8..c1356bb501a6 100644 --- a/drivers/staging/sm750fb/ddk750_chip.c +++ b/drivers/staging/sm750fb/ddk750_chip.c @@ -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); |