Re: [PATCH 09/10] ARM: msm: Make proc_comm clock control into a platform driver

2012-09-26 Thread Stephen Boyd
On 09/26/12 11:03, Pankaj Jangra wrote: > >> + >> +static int __devinit msm_clock_pcom_probe(struct platform_device *pdev) >> +{ >> + struct pcom_clk_pdata *pdata = pdev->dev.platform_data; > Should'nt it be const struct? Sure. Fixed. -- Qualcomm Innovation Center, Inc. is a member of Code

Re: [PATCH 09/10] ARM: msm: Make proc_comm clock control into a platform driver

2012-09-26 Thread Pankaj Jangra
Hi Stephen, Its good you started moving the msm to common clock framework.:) I hope msm's codeaurora tree will also be moved to CCF soon. :) On Fri, Sep 21, 2012 at 7:56 AM, Stephen Boyd wrote: > To move closer to the generic struct clock framework move the > proc_comm based clock code to a pla

[PATCH 09/10] ARM: msm: Make proc_comm clock control into a platform driver

2012-09-20 Thread Stephen Boyd
To move closer to the generic struct clock framework move the proc_comm based clock code to a platform driver. The data describing the struct clks still live in the devices-$ARCH file, but the clock initialization is done at driver binding time. Cc: Saravana Kannan Signed-off-by: Stephen Boyd --