From: Greg KH <gregkh@linuxfoundation.org>
To: "Enrico Weigelt, metux IT consult" <info@metux.net>
Cc: linux-kernel@vger.kernel.org, devicetree@vger.kernel.org,
heikki.krogerus@linux.intel.com, f.fainelli@gmail.com,
rpjday@crashcourse.ca, dvhart@infradead.org
Subject: Re: [PATCH] mod_devicetable: helper macro for declaring oftree module device table
Date: Wed, 24 Apr 2019 15:28:46 +0200 [thread overview]
Message-ID: <20190424132846.GA19385@kroah.com> (raw)
In-Reply-To: <1556104081-16217-1-git-send-email-info@metux.net>
On Wed, Apr 24, 2019 at 01:08:01PM +0200, Enrico Weigelt, metux IT consult wrote:
> Little helper macro that declares an oftree module device table,
> if CONFIG_OF is enabled. Otherwise it's just noop.
>
> This is also helpful if some drivers can be built w/ or w/o
> oftree support.
>
> Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
As I said before, please drop all "non-name" information from your s-o-b
line.
> ---
> include/linux/mod_devicetable.h | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h
> index 448621c..853e301 100644
> --- a/include/linux/mod_devicetable.h
> +++ b/include/linux/mod_devicetable.h
> @@ -245,6 +245,15 @@ struct of_device_id {
> const void *data;
> };
>
> +/*
> + * macro for adding the of module device table only if CONFIG_OF enabled
> + */
> +#ifdef CONFIG_OF
> +#define MODULE_DEVICE_TABLE_OF(name) MODULE_DEVICE_TABLE(of,name)
> +#else
> +#define MODULE_DEVICE_TABLE_OF(name)
> +#endif /* CONFIG_OF */
Do you have a real user of this? We need that for any type of apis that
people are supposed to use, we do not just add them without users if at
all possible.
And did you run it through checkpatch.pl before sending this? :(
thanks,
greg k-h
next prev parent reply other threads:[~2019-04-24 13:28 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-04-24 11:08 [PATCH] mod_devicetable: helper macro for declaring oftree module device table Enrico Weigelt, metux IT consult
2019-04-24 13:28 ` Greg KH [this message]
2019-04-26 14:16 ` [PATCH v2] " Enrico Weigelt, metux IT consult
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=20190424132846.GA19385@kroah.com \
--to=gregkh@linuxfoundation.org \
--cc=devicetree@vger.kernel.org \
--cc=dvhart@infradead.org \
--cc=f.fainelli@gmail.com \
--cc=heikki.krogerus@linux.intel.com \
--cc=info@metux.net \
--cc=linux-kernel@vger.kernel.org \
--cc=rpjday@crashcourse.ca \
/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).