]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
staging: sm750fb: formatPllReg: fix comment formatting
authorMike Rapoport <mike.rapoport@gmail.com>
Wed, 10 Feb 2016 16:33:54 +0000 (18:33 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 12 Feb 2016 03:52:37 +0000 (19:52 -0800)
Fix comment alignment and formatting to follow kernel coding style

Signed-off-by: Mike Rapoport <mike.rapoport@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/sm750fb/ddk750_chip.c

index 6ab26a9d5bc04ec2b0a2ff30f27a13e4b3caa449..940c43ffe78b954923357088fb6cf54a2124868e 100644 (file)
@@ -357,10 +357,12 @@ unsigned int formatPllReg(pll_value_t *pPLL)
 {
        unsigned int reg = 0;
 
-    /* Note that all PLL's have the same format. Here, we just use Panel PLL parameter
-       to work out the bit fields in the register.
-       On returning a 32 bit number, the value can be applied to any PLL in the calling function.
-    */
+       /*
+        * Note that all PLL's have the same format. Here, we just use
+        * Panel PLL parameter to work out the bit fields in the
+        * register. On returning a 32 bit number, the value can be
+        * applied to any PLL in the calling function.
+        */
        reg =
        FIELD_SET(0, PANEL_PLL_CTRL, BYPASS, OFF)
        | FIELD_SET(0, PANEL_PLL_CTRL, POWER,  ON)