[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <9222694.IRNnfpj6Tn@wuerfel>
Date: Mon, 04 Jan 2016 16:17:47 +0100
From: Arnd Bergmann <arnd@...db.de>
To: linux-arm-kernel@...ts.infradead.org
Cc: Mark Brown <broonie@...nel.org>,
Brian Austin <brian.austin@...rus.com>,
Liam Girdwood <lgirdwood@...il.com>,
Paul Handrigan <Paul.Handrigan@...rus.com>,
linux-kernel@...r.kernel.org, devicetree@...r.kernel.org
Subject: Re: [PATCH] ASoC: cs35l32: avoid uninitialized variable access
On Saturday 02 January 2016 14:17:46 Mark Brown wrote:
> On Sat, Jan 02, 2016 at 12:19:52AM +0100, Arnd Bergmann wrote:
>
> > - if (i2c_client->dev.of_node) {
> > + if (IS_ENABLED(CONFIG_OF) && i2c_client->dev.of_node) {
>
> This would be a lot nicer if there was an __always_null annotation we
> could put on of_node for !OF configurations, that'd Just Work and this
> can't be the only case where we have this idiom.
>
How about an inline helper like
static inline struct device_node *dev_of_node(struct device *dev)
{
if (IS_ENABLED(CONFIG_OF))
return dev->of_node;
}
Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists