Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1679424 > unrolled thread

[PATCH] staging: sm750fb: fixed a assignment typo

Started byLynn Lei <lynnl.wit@gmail.com>
First post2017-07-02 06:40 +0200
Last post2017-07-03 08:40 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] staging: sm750fb: fixed a assignment typo Lynn Lei <lynnl.wit@gmail.com> - 2017-07-02 06:40 +0200
    Re: [PATCH] staging: sm750fb: fixed a assignment typo Greg KH <gregkh@linuxfoundation.org> - 2017-07-03 08:40 +0200

#1679424 — [PATCH] staging: sm750fb: fixed a assignment typo

FromLynn Lei <lynnl.wit@gmail.com>
Date2017-07-02 06:40 +0200
Subject[PATCH] staging: sm750fb: fixed a assignment typo
Message-ID<tYEPT-4FT-1@gated-at.bofh.it>
Fixed a typo issue in get_mxclk_freq().

Signed-off-by: Lynn Lei <lynnl.wit@gmail.com>
---
 drivers/staging/sm750fb/ddk750_chip.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/sm750fb/ddk750_chip.c b/drivers/staging/sm750fb/ddk750_chip.c
index 5e4bfb601cea..c51761221131 100644
--- a/drivers/staging/sm750fb/ddk750_chip.c
+++ b/drivers/staging/sm750fb/ddk750_chip.c
@@ -40,7 +40,7 @@ static unsigned int get_mxclk_freq(void)
 
 	pll_reg = peek32(MXCLK_PLL_CTRL);
 	M = (pll_reg & PLL_CTRL_M_MASK) >> PLL_CTRL_M_SHIFT;
-	N = (pll_reg & PLL_CTRL_N_MASK) >> PLL_CTRL_M_SHIFT;
+	N = (pll_reg & PLL_CTRL_N_MASK) >> PLL_CTRL_N_SHIFT;
 	OD = (pll_reg & PLL_CTRL_OD_MASK) >> PLL_CTRL_OD_SHIFT;
 	POD = (pll_reg & PLL_CTRL_POD_MASK) >> PLL_CTRL_POD_SHIFT;
 
-- 
2.13.2

[toc] | [next] | [standalone]


#1679670

FromGreg KH <gregkh@linuxfoundation.org>
Date2017-07-03 08:40 +0200
Message-ID<tZ3bA-5Jl-5@gated-at.bofh.it>
In reply to#1679424
On Sun, Jul 02, 2017 at 12:39:24PM +0800, Lynn Lei wrote:
> Fixed a typo issue in get_mxclk_freq().

What typo issue is that?  Please always be specific in the changelog
text.

thanks,

greg k-h

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web