From: Stephen Boyd <sboyd-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
To: Akinobu Mita <akinobu.mita-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
Mike Looijmans <mike.looijmans-Oq418RWZeHk@public.gmane.org>,
Michael Turquette
<mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
Subject: Re: [PATCH] clk: cdce925: add support for CDCE913, CDCE937, and CDCE949
Date: Mon, 31 Oct 2016 11:15:09 -0700 [thread overview]
Message-ID: <20161031181509.GS16026@codeaurora.org> (raw)
In-Reply-To: <1477848637-5151-1-git-send-email-akinobu.mita-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
On 10/31, Akinobu Mita wrote:
> @@ -582,13 +615,19 @@ static int cdce925_probe(struct i2c_client *client,
> struct clk_cdce925_chip *data;
> struct device_node *node = client->dev.of_node;
> const char *parent_name;
> - const char *pll_clk_name[NUMBER_OF_PLLS] = {NULL,};
> + const char *pll_clk_name[MAX_NUMBER_OF_PLLS] = {NULL,};
> struct clk_init_data init;
> u32 value;
> int i;
> int err;
> struct device_node *np_output;
> char child_name[6];
> + struct regmap_config cdce925_regmap_config = {
Maybe just call this config because it's a local variable now.
> + .name = "configuration0",
> + .reg_bits = 8,
> + .val_bits = 8,
> + .cache_type = REGCACHE_RBTREE,
> + };
>
> dev_dbg(&client->dev, "%s\n", __func__);
> data = devm_kzalloc(&client->dev, sizeof(*data), GFP_KERNEL);
> @@ -596,6 +635,9 @@ static int cdce925_probe(struct i2c_client *client,
> return -ENOMEM;
>
> data->i2c_client = client;
> + data->chip_info = &clk_cdce925_chip_info_tbl[id->driver_data];
> + cdce925_regmap_config.max_register = CDCE925_OFFSET_PLL +
> + data->chip_info->num_plls * 0x10 - 1;
> data->regmap = devm_regmap_init(&client->dev, ®map_cdce925_bus,
> &client->dev, &cdce925_regmap_config);
> if (IS_ERR(data->regmap)) {
> @@ -728,13 +780,19 @@ static int cdce925_probe(struct i2c_client *client,
> }
>
> static const struct i2c_device_id cdce925_id[] = {
> - { "cdce925", 0 },
> + { "cdce913", CDCE913 },
> + { "cdce925", CDCE925 },
> + { "cdce937", CDCE937 },
> + { "cdce949", CDCE949 },
> { }
> };
> MODULE_DEVICE_TABLE(i2c, cdce925_id);
>
> static const struct of_device_id clk_cdce925_of_match[] = {
> + { .compatible = "ti,cdce913" },
> { .compatible = "ti,cdce925" },
> + { .compatible = "ti,cdce937" },
> + { .compatible = "ti,cdce949" },
Doesn't this need to be updated to point to the correct enum
values?
> { },
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2016-10-31 18:15 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-30 17:30 [PATCH] clk: cdce925: add support for CDCE913, CDCE937, and CDCE949 Akinobu Mita
[not found] ` <1477848637-5151-1-git-send-email-akinobu.mita-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2016-10-30 18:39 ` Mike Looijmans
[not found] ` <58163E6A.7030709-Oq418RWZeHk@public.gmane.org>
2016-10-31 15:12 ` Akinobu Mita
2016-10-31 18:15 ` Stephen Boyd [this message]
2016-11-01 13:52 ` Akinobu Mita
[not found] ` <CAC5umyiVcV_KEL+g=mRL-mGQfJrCU5XrEVNzX=CFFXWNuTMBGQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-11-01 17:48 ` Stephen Boyd
[not found] ` <20161101174808.GU16026-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2016-11-02 14:42 ` Akinobu Mita
[not found] ` <CAC5umyj+NO7tXEfT4YEGAo6-CRfxufLHPSXQVmCdJjHDYgZiSg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-11-02 17:56 ` Stephen Boyd
2016-10-31 6:34 ` Rob Herring
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=20161031181509.GS16026@codeaurora.org \
--to=sboyd-sgv2jx0feol9jmxxk+q4oq@public.gmane.org \
--cc=akinobu.mita-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-clk-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=mike.looijmans-Oq418RWZeHk@public.gmane.org \
--cc=mturquette-QSEj5FYQhm4dnm+yROfE0A@public.gmane.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).