linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 0/1] clk: npcm7xx: fix base address and of_clk_get_by_name
@ 2018-07-16 10:10 Tali Perry
  2018-07-16 10:10 ` [PATCH v1 1/1] clk: npcm7xx: get fixed clocks from DT Tali Perry
  0 siblings, 1 reply; 7+ messages in thread
From: Tali Perry @ 2018-07-16 10:10 UTC (permalink / raw)
  To: sboyd, brendanhiggins, robh+dt, mark.rutland, linux, weiyongjunl,
	avifishman70, tmaimon77, raltherr
  Cc: devicetree, linux-kernel, linux-arm-kernel, openbmc, Tali Perry,
	Wei Yongjun

Nuvoton NPCM7XX Clock Controller
fix base address and of_clk_get_by_name error handling.
    Also update error messages to be more informative.
    
    In case clk_base allocation is erronoeous the return value is null.
    Also fix handling of of_clk_get_by_name returns an error. 
    Print a better error message pointing to the dt-binding documention.

This patch is re-submitted since it was already pushed to main 
(just the diff, without the full driver which is already in 
master branch.)


Signed-off-by: Tali Perry <tali.perry1@gmail.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>

---

Tali Perry (1):
  clk: npcm7xx: get fixed clocks from DT

 drivers/clk/clk-npcm7xx.c | 102 +++++++++++++++++++++++++++++++++++++++-------
 1 file changed, 87 insertions(+), 15 deletions(-)

-- 
2.14.1


^ permalink raw reply	[flat|nested] 7+ messages in thread
* [PATCH v1 0/1] clk: npcm7xx: fix base address and of_clk_get_by_name
@ 2018-07-17 11:31 Tali Perry
  2018-07-17 11:31 ` [PATCH v1 1/1] clk: npcm7xx: get fixed clocks from DT Tali Perry
  0 siblings, 1 reply; 7+ messages in thread
From: Tali Perry @ 2018-07-17 11:31 UTC (permalink / raw)
  To: sboyd, brendanhiggins, robh+dt, mark.rutland, linux, weiyongjunl,
	avifishman70, tmaimon77, raltherr
  Cc: devicetree, linux-kernel, linux-arm-kernel, openbmc, Tali Perry,
	Wei Yongjun

Nuvoton NPCM7XX Clock Controller
fix base address and of_clk_get_by_name error handling.
    Also update error messages to be more informative.
    
    In case clk_base allocation is erronoeous the return value is null.
    Also fix handling of of_clk_get_by_name returns an error. 
    Print a better error message pointing to the dt-binding documention.

This patch is re-submitted since it was already pushed to main 
(just the diff, without the full driver which is already in 
master branch.)


Signed-off-by: Tali Perry <tali.perry1@gmail.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>

---

Tali Perry (1):
  clk: npcm7xx: get fixed clocks from DT

 drivers/clk/clk-npcm7xx.c | 101 +++++++++++++++++++++++++++++++++++-----------
 1 file changed, 77 insertions(+), 24 deletions(-)

-- 
2.14.1


^ permalink raw reply	[flat|nested] 7+ messages in thread
* [PATCH v1 0/1] clk: npcm7xx: fix base address and of_clk_get_by_name
@ 2018-07-17 12:47 Tali Perry
  2018-07-17 12:47 ` [PATCH v1 1/1] clk: npcm7xx: get fixed clocks from DT Tali Perry
  0 siblings, 1 reply; 7+ messages in thread
From: Tali Perry @ 2018-07-17 12:47 UTC (permalink / raw)
  To: sboyd, brendanhiggins, robh+dt, mark.rutland, linux, weiyongjunl,
	avifishman70, tmaimon77, raltherr
  Cc: devicetree, linux-kernel, linux-arm-kernel, openbmc, Tali Perry,
	Wei Yongjun

Nuvoton NPCM7XX Clock Controller
fix base address and of_clk_get_by_name error handling.
    Also update error messages to be more informative.
    
    In case clk_base allocation is erronoeous the return value is null.
    Also fix handling of of_clk_get_by_name returns an error. 
    Print a better error message pointing to the dt-binding documention.

This patch is re-submitted since it was already pushed to main 
(just the diff, without the full driver which is already in 
master branch.)


Signed-off-by: Tali Perry <tali.perry1@gmail.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>

---

Tali Perry (1):
  clk: npcm7xx: get fixed clocks from DT

 drivers/clk/clk-npcm7xx.c | 99 +++++++++++++++++++++++++++++++++++------------
 1 file changed, 75 insertions(+), 24 deletions(-)

-- 
2.14.1


^ permalink raw reply	[flat|nested] 7+ messages in thread
* [PATCH v1 0/1] clk: npcm7xx: fix base address and of_clk_get_by_name
@ 2018-11-11 13:47 tali.perry1
  2018-11-11 13:47 ` [PATCH v1 1/1] clk: npcm7xx: get fixed clocks from DT tali.perry1
  0 siblings, 1 reply; 7+ messages in thread
From: tali.perry1 @ 2018-11-11 13:47 UTC (permalink / raw)
  To: brendanhiggins, robh+dt, mark.rutland, linux, avifishman70,
	tmaimon77, raltherr, mturquette, sboyd
  Cc: devicetree, linux-kernel, linux-arm-kernel, openbmc, linux-clk,
	Tali Perry, Wei Yongjun

From: Tali Perry <tali.perry1@gmail.com>

Nuvoton NPCM7XX Clock Controller
fix base address and of_clk_get_by_name error handling.
    Also update error messages to be more informative.
    
    In case clk_base allocation is erronoeous the return value is null.
    Also fix handling of of_clk_get_by_name returns an error. 
    Print a better error message pointing to the dt-binding documention.

This patch is re-submitted since it was already pushed to main 
(just the diff, without the full driver which is already in 
master branch.)


Signed-off-by: Tali Perry <tali.perry1@gmail.com>
Reviewed-by: Rob Herring <robh@kernel.org>
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>

---

Tali Perry (1):
  clk: npcm7xx: get fixed clocks from DT

 drivers/clk/clk-npcm7xx.c | 99 +++++++++++++++++++++++++++++++++++------------
 1 file changed, 75 insertions(+), 24 deletions(-)

-- 
2.14.1


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-11-30  0:23 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-16 10:10 [PATCH v1 0/1] clk: npcm7xx: fix base address and of_clk_get_by_name Tali Perry
2018-07-16 10:10 ` [PATCH v1 1/1] clk: npcm7xx: get fixed clocks from DT Tali Perry
2018-07-16 10:17   ` Russell King - ARM Linux
2018-07-17 11:31 [PATCH v1 0/1] clk: npcm7xx: fix base address and of_clk_get_by_name Tali Perry
2018-07-17 11:31 ` [PATCH v1 1/1] clk: npcm7xx: get fixed clocks from DT Tali Perry
2018-07-17 12:47 [PATCH v1 0/1] clk: npcm7xx: fix base address and of_clk_get_by_name Tali Perry
2018-07-17 12:47 ` [PATCH v1 1/1] clk: npcm7xx: get fixed clocks from DT Tali Perry
2018-11-11 13:47 [PATCH v1 0/1] clk: npcm7xx: fix base address and of_clk_get_by_name tali.perry1
2018-11-11 13:47 ` [PATCH v1 1/1] clk: npcm7xx: get fixed clocks from DT tali.perry1
2018-11-30  0:23   ` Stephen Boyd

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).