Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1227910

Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods

From Rob Herring <robh@kernel.org>
Newsgroups linux.kernel
Subject Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods
Date 2015-09-18 16:30 +0200
Message-ID <qa4PL-5bi-3@gated-at.bofh.it> (permalink)
References <q9nB7-17k-1@gated-at.bofh.it> <q9nB7-17k-5@gated-at.bofh.it> <q9Icy-607-17@gated-at.bofh.it> <q9ZZL-6Jw-7@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Fri, Sep 18, 2015 at 4:15 AM, Pantelis Antoniou
<pantelis.antoniou@konsulko.com> wrote:
> Hi Rob,
>
>> On Sep 17, 2015, at 17:13 , Rob Herring <robh@kernel.org> wrote:
>>
>> On 09/16/2015 11:11 AM, Pantelis Antoniou wrote:
>>> Changesets are very powerful, but the lack of a helper API
>>> makes using them cumbersome. Introduce a simple copy based
>>> API that makes things considerably easier.

[...]

>>> +struct device_node *of_changeset_create_device_nodev(
>>> +    struct of_changeset *ocs, struct device_node *parent,
>>> +    const char *fmt, va_list vargs)
>>> +{
>>> +    struct device_node *node;
>>> +
>>> +    node = __of_node_dupv(NULL, fmt, vargs);
>>> +    if (!node)
>>> +            return ERR_PTR(-ENOMEM);
>>> +
>>> +    node->parent = parent;
>>> +    return node;
>>> +}
>>
>> EXPORT_SYMBOL_GPL here and on others?
>>
>
> Err, none of the others of_changeset* methods are exported right now.
> Up to now it was all internal API; should I go ahead and put EXPORT_SYMBOL_GPL
> to all the others as well?

Okay, NM then.

Rob
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v2 0/2] of: Dynamic DT updates Pantelis Antoniou <pantelis.antoniou@konsulko.com> - 2015-09-16 18:20 +0200
  [PATCH v2 2/2] of: changesets: Introduce changeset helper methods Pantelis Antoniou <pantelis.antoniou@konsulko.com> - 2015-09-16 18:20 +0200
    Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods Rob Herring <robh@kernel.org> - 2015-09-17 16:20 +0200
      Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods Pantelis Antoniou <pantelis.antoniou@konsulko.com> - 2015-09-18 11:20 +0200
        Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods Rob Herring <robh@kernel.org> - 2015-09-18 16:30 +0200
    Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods Pantelis Antoniou <pantelis.antoniou@konsulko.com> - 2015-09-21 14:40 +0200
      Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods Pantelis Antoniou <pantelis.antoniou@konsulko.com> - 2015-09-21 14:50 +0200
        Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods Geert Uytterhoeven <geert@linux-m68k.org> - 2015-09-21 15:10 +0200
          Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods Pantelis Antoniou <pantelis.antoniou@konsulko.com> - 2015-09-21 15:20 +0200
      Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods Geert Uytterhoeven <geert@linux-m68k.org> - 2015-09-21 14:50 +0200
    Re: [PATCH v2 2/2] of: changesets: Introduce changeset helper methods Geert Uytterhoeven <geert@linux-m68k.org> - 2015-09-21 14:40 +0200
  [PATCH v2 1/2] of: dynamic: Add __of_node_dupv() Pantelis Antoniou <pantelis.antoniou@konsulko.com> - 2015-09-16 18:20 +0200
  Re: [PATCH v2 0/2] of: Dynamic DT updates Rob Herring <robherring2@gmail.com> - 2015-09-16 18:50 +0200
    Re: [PATCH v2 0/2] of: Dynamic DT updates Pantelis Antoniou <pantelis.antoniou@konsulko.com> - 2015-09-16 21:10 +0200

csiph-web