[PATCH 14/15] watchdog/mpcore_wdt: Add clock framework support
Russell King - ARM Linux
linux at arm.linux.org.uk
Wed Mar 7 07:27:32 EST 2012
On Wed, Mar 07, 2012 at 04:20:58AM -0800, viresh kumar wrote:
> On 3/7/12, Russell King - ARM Linux <linux at arm.linux.org.uk> wrote:
> > On Wed, Mar 07, 2012 at 03:57:55PM +0530, Viresh Kumar wrote:
> >> @@ -156,10 +159,22 @@ static int mpcore_wdt_open(struct inode *inode,
> >> struct file *file)
>
> >> + ret = clk_enable(wdt->clk);
> >
> > What about preparing the clock?
> >
>
> I missed that. Will update prepare/unprepare of clk across driver.
>
> >> + wdt->clk = clk_get(&pdev->dev, NULL);
> >> + if (IS_ERR(wdt->clk)) {
> >> + dev_warn(&pdev->dev, "Clock not found\n");
> >> + wdt->clk = NULL;
> >
> > Remove this line.
>
> Actually this was very much intentional, so that i can do
> if (wdt->clk).
Drivers have no business interpreting anything but an IS_ERR() return from
clk_get() as invalid. Everything else is the CLK APIs business, not the
driver's business. So, to start using NULL as a special case is wrong.
More information about the linux-arm-kernel
mailing list