From: mturquette@linaro.org (Mike Turquette)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V2 2/3] clk: Improve errorhandling for clk_set_parent
Date: Fri, 22 Mar 2013 13:41:12 -0700 [thread overview]
Message-ID: <20130322204112.834.21029@quantum> (raw)
In-Reply-To: <CA+Z25wWnGFFK9d+zdL+6iDDmS=0PKGDtU=+rePeGTv8PMtgSOg@mail.gmail.com>
Quoting Rajagopal Venkat (2013-03-22 02:59:17)
> On 22 March 2013 02:30, Mike Turquette <mturquette@linaro.org> wrote:
> > Quoting Ulf Hansson (2013-03-21 06:48:12)
> >> @@ -1344,8 +1341,9 @@ out:
> >> int clk_set_parent(struct clk *clk, struct clk *parent)
> >> {
> >> int ret = 0;
> >> + u8 p_index;
> >>
> >> - if (!clk || !clk->ops)
> >> + if (!clk || !clk->ops || !parent)
> >> return -EINVAL;
> >>
> >
> > A NULL clock is valid according to the clk.h api. I would like to allow
> > parent to be NULL, resulting in a migration from the real clock tree to
> > the orphans list.
> >
> > This feature was apparently buggy for some time and Rajagopal sent me a
> > patch off-list to fix it. Rajagopal, can you post your patch publicly?
> >
>
> Patch is available at https://patchwork.kernel.org/patch/2012221/
> Do you want me to rebase it on top of this patchset?
>
Maybe. Let's see what Ulf's next version of the clk_set_parent locking
patch looks like.
Thanks,
Mike
> > Thanks,
> > Mike
>
>
>
> --
> Regards,
> Rajagopal
next prev parent reply other threads:[~2013-03-22 20:41 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-21 13:48 [PATCH V2 0/3] clk: Fixup issues for clk_set_parent Ulf Hansson
2013-03-21 13:48 ` [PATCH V2 1/3] clk: Restructure code for __clk_reparent Ulf Hansson
2013-03-21 20:53 ` Mike Turquette
2013-03-22 11:08 ` Ulf Hansson
2013-03-22 20:39 ` Mike Turquette
2013-03-21 13:48 ` [PATCH V2 2/3] clk: Improve errorhandling for clk_set_parent Ulf Hansson
2013-03-21 21:00 ` Mike Turquette
2013-03-22 9:59 ` Rajagopal Venkat
2013-03-22 20:41 ` Mike Turquette [this message]
2013-03-22 11:13 ` Ulf Hansson
2013-03-21 13:48 ` [PATCH V2 3/3] clk: Fixup locking issues " Ulf Hansson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20130322204112.834.21029@quantum \
--to=mturquette@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.