Commit 0c4d85fc authored by Mike Rapoport's avatar Mike Rapoport Committed by Greg Kroah-Hartman

staging: sm750fb: formatPllReg: fix comment formatting

Fix comment alignment and formatting to follow kernel coding style
Signed-off-by: default avatarMike Rapoport <mike.rapoport@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 375b4d42
...@@ -357,10 +357,12 @@ unsigned int formatPllReg(pll_value_t *pPLL) ...@@ -357,10 +357,12 @@ unsigned int formatPllReg(pll_value_t *pPLL)
{ {
unsigned int reg = 0; 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. * Note that all PLL's have the same format. Here, we just use
On returning a 32 bit number, the value can be applied to any PLL in the calling function. * 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 = reg =
FIELD_SET(0, PANEL_PLL_CTRL, BYPASS, OFF) FIELD_SET(0, PANEL_PLL_CTRL, BYPASS, OFF)
| FIELD_SET(0, PANEL_PLL_CTRL, POWER, ON) | FIELD_SET(0, PANEL_PLL_CTRL, POWER, ON)
......
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