Fwd: + clk-add-non-config_have_clk-routines.patch added to -mm tree

Russell King - ARM Linux linux at arm.linux.org.uk
Wed Jun 6 19:54:38 EDT 2012


On Thu, Jun 07, 2012 at 08:03:40AM +0900, Fengguang Wu wrote:
> On Wed, Jun 06, 2012 at 11:49:58PM +0100, Russell King - ARM Linux wrote:
> > On Thu, Jun 07, 2012 at 07:42:25AM +0900, Fengguang Wu wrote:
> > > > I didn't merge this patchset because it still has the build error
> > > > reported by Paul, below.
> > > 
> > > I see. The arm's redefinitions are mostly empty function stubs that
> > > are identical to the ones provided by Viresh's patch. Except for this
> > > one, trying to act smarter:
> > > 
> > > arch/arm/mach-netx/fb.c:
> > > 
> > >         struct clk *clk_get(struct device *dev, const char *id)
> > >         {       
> > >                 return dev && strcmp(dev_name(dev), "fb") == 0 ? NULL : ERR_PTR(-ENOENT);
> > >         }
> > > 
> > > The return values are interesting. In this arm, clk_get()
> > > conditionally returns NULL or -ENOENT. While the clk_get() in clk.c
> > > always returns -ENOENT on error. Now Viresh comes and defines a
> > > clk_get() that always returns NULL on !CONFIG_HAVE_CLK.
> > > 
> > > What would be the difference between NULL and -ENOENT?
> > 
> > Look, it's all very very very very simple.
> > 
> > The clock API.  clk_get().  If IS_ERR() is true, then the pointer is
> > _not_ valid, it is an error.
> > 
> > If IS_ERR() is false, then *all* *drivers* must assume that the cookie
> > is valid as far as the driver is concerned.  It is up to the clk API
> > to interpret these cookies in whatever way the clk API implementation
> > sees fit.
> 
> That's understandable. Russell, do you think it good to add a check in
> clk_disable()? This should gracefully avoid the kernel oops and still
> catch buggy driver code.

We could - it'd be better to make it IS_ERR(clk) though, let's not be
specific about the error code here.



More information about the linux-arm-kernel mailing list