Re: [U-Boot] [PATCH v1 2/2] clk: at91: Add .ops callback for clk_generic

2016-09-12 Thread Wenyou.Yang
Hi Stephen, > -Original Message- > From: Stephen Warren [mailto:swar...@wwwdotorg.org] > Sent: 2016年9月3日 1:38 > To: Wenyou Yang - A41535 > Cc: swar...@nvidia.com; u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH v1 2/2] clk: at91: Add .ops callback for > clk_

Re: [U-Boot] [PATCH v1 2/2] clk: at91: Add .ops callback for clk_generic

2016-09-08 Thread Wenyou.Yang
Hi Stephen, > -Original Message- > From: Stephen Warren [mailto:swar...@wwwdotorg.org] > Sent: 2016年9月3日 1:38 > To: Wenyou Yang - A41535 > Cc: swar...@nvidia.com; u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH v1 2/2] clk: at91: Add .ops callback for > clk_

Re: [U-Boot] [PATCH v1 2/2] clk: at91: Add .ops callback for clk_generic

2016-09-02 Thread Stephen Warren
On 09/01/2016 07:46 PM, wenyou.y...@microchip.com wrote: Hi Stephen, Subject: [PATCH v1 2/2] clk: at91: Add .ops callback for clk_generic To avoid the wild pointer as NULL->of_xlate, add an empty .ops callback for the clk_generic driver. This shouldn't be needed. If this driver isn't a clock

Re: [U-Boot] [PATCH v1 2/2] clk: at91: Add .ops callback for clk_generic

2016-09-01 Thread Wenyou.Yang
Hi Stephen, > > Subject: [PATCH v1 2/2] clk: at91: Add .ops callback for clk_generic > > > > To avoid the wild pointer as NULL->of_xlate, add an empty .ops > > callback for the clk_generic driver. > > This shouldn't be needed. If this driver isn't a clock provider, and it > cannot be a > clock p

Re: [U-Boot] [PATCH v1 2/2] clk: at91: Add .ops callback for clk_generic

2016-08-30 Thread Stephen Warren
On 08/30/2016 02:11 AM, Wenyou Yang wrote: To avoid the wild pointer as NULL->of_xlate, add an empty .ops callback for the clk_generic driver. This shouldn't be needed. If this driver isn't a clock provider, and it cannot be a clock provider without implementing and clock ops, then nothing sh

[U-Boot] [PATCH v1 2/2] clk: at91: Add .ops callback for clk_generic

2016-08-30 Thread Wenyou Yang
To avoid the wild pointer as NULL->of_xlate, add an empty .ops callback for the clk_generic driver. Signed-off-by: Wenyou Yang --- drivers/clk/at91/pmc.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/clk/at91/pmc.c b/drivers/clk/at91/pmc.c index 76ff387..1043148 100644 --- a/dr