From: "andriy.shevchenko@linux.intel.com" <andriy.shevchenko@linux.intel.com>
To: "Vaittinen, Matti" <Matti.Vaittinen@fi.rohmeurope.com>
Cc: "robh+dt@kernel.org" <robh+dt@kernel.org>,
"dan.j.williams@intel.com" <dan.j.williams@intel.com>,
"tglx@linutronix.de" <tglx@linutronix.de>,
"brendanhiggins@google.com" <brendanhiggins@google.com>,
"olteanv@gmail.com" <olteanv@gmail.com>,
"davem@davemloft.net" <davem@davemloft.net>,
"talgi@mellanox.com" <talgi@mellanox.com>,
"linux-pm@vger.kernel.org" <linux-pm@vger.kernel.org>,
"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"davidgow@google.com" <davidgow@google.com>,
"broonie@kernel.org" <broonie@kernel.org>,
"herbert@gondor.apana.org.au" <herbert@gondor.apana.org.au>,
"lgirdwood@gmail.com" <lgirdwood@gmail.com>,
"rdunlap@infradead.org" <rdunlap@infradead.org>,
"mark.rutland@arm.com" <mark.rutland@arm.com>,
"yamada.masahiro@socionext.com" <yamada.masahiro@socionext.com>,
"Mutanen, Mikko" <Mikko.Mutanen@fi.rohmeurope.com>,
"bp@suse.de" <bp@suse.de>,
"mhiramat@kernel.org" <mhiramat@kernel.org>,
"krzk@kernel.org" <krzk@kernel.org>,
"mazziesaccount@gmail.com" <mazziesaccount@gmail.com>,
"skhan@linuxfoundation.org" <skhan@linuxfoundation.org>,
"zaslonko@linux.ibm.com" <zaslonko@linux.ibm.com>,
"Laine, Markus" <Markus.Laine@fi.rohmeurope.com>,
"vincenzo.frascino@arm.com" <vincenzo.frascino@arm.com>,
"sre@kernel.org" <sre@kernel.org>,
"ardb@kernel.org" <ardb@kernel.org>,
"linus.walleij@linaro.org" <linus.walleij@linaro.org>,
"gregkh@linuxfoundation.org" <gregkh@linuxfoundation.org>,
"uwe@kleine-koenig.org" <uwe@kleine-koenig.org>,
"akpm@linux-foundation.org" <akpm@linux-foundation.org>
Subject: Re: [PATCH v6 09/10] power: supply: Support ROHM bd99954 charger
Date: Wed, 25 Mar 2020 15:20:33 +0200 [thread overview]
Message-ID: <20200325132033.GY1922688@smile.fi.intel.com> (raw)
In-Reply-To: <d533c18dcd7b4d4ca453661b3f9495a840b3313b.camel@fi.rohmeurope.com>
On Wed, Mar 25, 2020 at 01:00:21PM +0000, Vaittinen, Matti wrote:
> Well, Good morning Andy :)
>
> On Wed, 2020-03-25 at 14:09 +0200, andriy.shevchenko@linux.intel.com
> wrote:
> > On Wed, Mar 25, 2020 at 11:36:46AM +0000, Vaittinen, Matti wrote:
> > > On Tue, 2020-03-24 at 12:35 +0200, Andy Shevchenko wrote:
> > > > On Tue, Mar 24, 2020 at 11:50:24AM +0200, Andy Shevchenko wrote:
> > > > > On Tue, Mar 24, 2020 at 10:32:19AM +0200, Matti Vaittinen
> > > > > wrote:
> > > > > > +#include <linux/acpi.h>
> > > > > > +#include <linux/of.h>
> > > > >
> > > > > I didn't find any evidence of use of those two, otherwise,
> > > > > missed
> > > > > property.h
> > > > > and perhaps mod_devicetable.h.
> >
> > ...
> >
> > > > > > +MODULE_DEVICE_TABLE(of, bd9995x_of_match);
> > > > > > +MODULE_DEVICE_TABLE(acpi, bd9995x_acpi_match);
> > > >
> > > > I have to add since you are using those macros without ifdeffery,
> > > > you
> > > > should
> > > > get warning in !ACPI and/or !OF cases.
> > > >
> > > > So, drop those of_match_ptr() / ACPI_PTR() and thus above
> > > > headers.
> > >
> > > Sorry but I don't follow :/ I did drop whole ACPI table as the
> > > battery
> > > information is not fetched from ACPI anyways.
> >
> > Okay, let's forget then about ACPI bits.
> >
> > > But I don't know what you
> > > mean by dropping the of_match_ptr?
> >
> > Literally do not use this macro. Otherwise you make a dependency to
> > OF which
> > should be then in the Kconfig like
> >
> > depend on OF || COMPILE_TEST
> >
>
> Hmm... Why is that? In of.h we have #ifndef CONFIG_OF section which
> defines:
>
> #define of_match_ptr(_ptr) NULL
>
> So, this macro is well defined even if !CONFIG_OF, right?
Because your driver makes nonsense in non-OF cases AFAICS, did I miss anything?
> > but in this case you will get compiler warning without ugly ifdeffery
> > around
> > OF ID table (as you pointed below you didn't test that scenario).
> >
> > > I for sure need the of_device_id as
> > > in many cases both the device matching and module matching are done
> > > based on of_match_table and of_device_id.
> > >
> > > I admit I didn't try compiling the !OF config. Are you suggesting I
> > > should put the of_device_id array and populating the of_match_table
> > > in
> > > #ifdef CONFIG_OF? Or maybe you suggest that I will put of_device_id
> > > array in #ifdef CONFIG_OF and use of_match_ptr() when populating
> > > the
> > > of_match_table pointer? I guess that would make sense. I'll do that
> > > -
> > > can you please explain if this was not what you meant.
> >
> > One of us needs a morning covfefe, I think :-)
>
> So in !CONFIG_OF case we will have
> .of_match_table = of_match_ptr(bd9995x_of_match),
> preprocessed to form
> .of_match_table = NULL,
>
> right? So with this macro we can omit introduction of bd9995x_of_match
> when !CONFIG_OF - meaning we only build #ifdeffery arounf the match
> table and not around this assignment.
>
> So I'll just do
>
> #ifdef CONFIG_OF
> static const struct of_device_id bd9995x_of_match[] = {
> { .compatible = "rohm,bd99954", },
> { }
> };
> MODULE_DEVICE_TABLE(of, bd9995x_of_match);
> #endif
But why?
You really uglify the code with ifdeffery, make a dependency to OF (yes, you
will have to have of.h include) only because of that silly
macro and save 64 bytes of memory footprint.
> and let the
> #define of_match_ptr(_ptr) NULL
> fix assignment
> .of_match_table = of_match_ptr(bd9995x_of_match),
>
> when !CONFIG_OF.
--
With Best Regards,
Andy Shevchenko
next prev parent reply other threads:[~2020-03-25 13:20 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <cover.1584977512.git.matti.vaittinen@fi.rohmeurope.com>
2020-03-24 8:27 ` [PATCH v6 01/10] dt-bindings: battery: add new battery parameters Matti Vaittinen
2020-03-24 8:28 ` [PATCH v6 02/10] dt_bindings: ROHM BD99954 Charger Matti Vaittinen
2020-03-24 8:29 ` [PATCH v6 04/10] lib/test_linear_ranges: add a test for the 'linear_ranges' Matti Vaittinen
2020-03-24 9:14 ` Andy Shevchenko
2020-03-24 9:51 ` Vaittinen, Matti
2020-03-24 8:30 ` [PATCH v6 05/10] power: supply: bd70528: rename linear_range to avoid collision Matti Vaittinen
2020-03-24 8:31 ` [PATCH v6 07/10] power: supply: bd70528: use linear ranges Matti Vaittinen
2020-03-24 8:31 ` [PATCH v6 08/10] power: supply: add battery parameters Matti Vaittinen
2020-03-24 8:32 ` [PATCH v6 09/10] power: supply: Support ROHM bd99954 charger Matti Vaittinen
2020-03-24 9:50 ` Andy Shevchenko
2020-03-24 9:51 ` Andy Shevchenko
2020-03-24 10:30 ` Vaittinen, Matti
2020-03-24 10:35 ` Andy Shevchenko
2020-03-25 11:36 ` Vaittinen, Matti
2020-03-25 12:09 ` andriy.shevchenko
2020-03-25 13:00 ` Vaittinen, Matti
2020-03-25 13:20 ` andriy.shevchenko [this message]
2020-03-25 13:21 ` andriy.shevchenko
2020-03-25 13:47 ` Vaittinen, Matti
2020-03-24 10:53 ` Vaittinen, Matti
2020-03-24 11:56 ` andriy.shevchenko
2020-03-25 10:14 ` Vaittinen, Matti
2020-03-25 12:05 ` andriy.shevchenko
2020-03-25 9:47 ` Vaittinen, Matti
2020-03-24 8:32 ` [PATCH v6 10/10] power: supply: Fix Kconfig help text indentiation Matti Vaittinen
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=20200325132033.GY1922688@smile.fi.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=Markus.Laine@fi.rohmeurope.com \
--cc=Matti.Vaittinen@fi.rohmeurope.com \
--cc=Mikko.Mutanen@fi.rohmeurope.com \
--cc=akpm@linux-foundation.org \
--cc=ardb@kernel.org \
--cc=bp@suse.de \
--cc=brendanhiggins@google.com \
--cc=broonie@kernel.org \
--cc=dan.j.williams@intel.com \
--cc=davem@davemloft.net \
--cc=davidgow@google.com \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=herbert@gondor.apana.org.au \
--cc=krzk@kernel.org \
--cc=lgirdwood@gmail.com \
--cc=linus.walleij@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=mazziesaccount@gmail.com \
--cc=mhiramat@kernel.org \
--cc=olteanv@gmail.com \
--cc=rdunlap@infradead.org \
--cc=robh+dt@kernel.org \
--cc=skhan@linuxfoundation.org \
--cc=sre@kernel.org \
--cc=talgi@mellanox.com \
--cc=tglx@linutronix.de \
--cc=uwe@kleine-koenig.org \
--cc=vincenzo.frascino@arm.com \
--cc=yamada.masahiro@socionext.com \
--cc=zaslonko@linux.ibm.com \
/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).