* [PATCH] mtd: use dev_of_node helper in mtd_get_of_node @ 2017-03-31 9:11 Rafał Miłecki [not found] ` <20170331091148.19816-1-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Rafał Miłecki @ 2017-03-31 9:11 UTC (permalink / raw) To: David Woodhouse, Brian Norris, Boris Brezillon, Marek Vasut, Richard Weinberger Cc: Cyrille Pitchen, linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, Rafał Miłecki From: Rafał Miłecki <rafal-g1n6cQUeyibVItvQsEIGlw@public.gmane.org> This allows better compile-time optimizations with CONFIG_OF disabled. Signed-off-by: Rafał Miłecki <rafal-g1n6cQUeyibVItvQsEIGlw@public.gmane.org> --- include/linux/mtd/mtd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h index eebdc63cf6af..f8db5b2e4028 100644 --- a/include/linux/mtd/mtd.h +++ b/include/linux/mtd/mtd.h @@ -393,7 +393,7 @@ static inline void mtd_set_of_node(struct mtd_info *mtd, static inline struct device_node *mtd_get_of_node(struct mtd_info *mtd) { - return mtd->dev.of_node; + return dev_of_node(&mtd->dev); } static inline int mtd_oobavail(struct mtd_info *mtd, struct mtd_oob_ops *ops) -- 2.11.0 -- 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 ^ permalink raw reply related [flat|nested] 3+ messages in thread
[parent not found: <20170331091148.19816-1-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH] mtd: use dev_of_node helper in mtd_get_of_node [not found] ` <20170331091148.19816-1-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> @ 2017-03-31 9:49 ` Boris Brezillon 2017-04-19 18:39 ` Brian Norris 0 siblings, 1 reply; 3+ messages in thread From: Boris Brezillon @ 2017-03-31 9:49 UTC (permalink / raw) To: Rafał Miłecki Cc: David Woodhouse, Brian Norris, Marek Vasut, Richard Weinberger, Cyrille Pitchen, linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, Rafał Miłecki On Fri, 31 Mar 2017 11:11:48 +0200 Rafał Miłecki <zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > From: Rafał Miłecki <rafal-g1n6cQUeyibVItvQsEIGlw@public.gmane.org> > > This allows better compile-time optimizations with CONFIG_OF disabled. > > Signed-off-by: Rafał Miłecki <rafal-g1n6cQUeyibVItvQsEIGlw@public.gmane.org> Not sure we care about such micro-optimizations, but it shouldn't hurst so, Acked-by: Boris Brezillon <boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> > --- > include/linux/mtd/mtd.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h > index eebdc63cf6af..f8db5b2e4028 100644 > --- a/include/linux/mtd/mtd.h > +++ b/include/linux/mtd/mtd.h > @@ -393,7 +393,7 @@ static inline void mtd_set_of_node(struct mtd_info *mtd, > > static inline struct device_node *mtd_get_of_node(struct mtd_info *mtd) > { > - return mtd->dev.of_node; > + return dev_of_node(&mtd->dev); > } > > static inline int mtd_oobavail(struct mtd_info *mtd, struct mtd_oob_ops *ops) -- 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 ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mtd: use dev_of_node helper in mtd_get_of_node 2017-03-31 9:49 ` Boris Brezillon @ 2017-04-19 18:39 ` Brian Norris 0 siblings, 0 replies; 3+ messages in thread From: Brian Norris @ 2017-04-19 18:39 UTC (permalink / raw) To: Boris Brezillon Cc: Rafał Miłecki, David Woodhouse, Marek Vasut, Richard Weinberger, Cyrille Pitchen, linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, devicetree-u79uwXL29TY76Z2rM5mHXA, Rafał Miłecki On Fri, Mar 31, 2017 at 11:49:50AM +0200, Boris Brezillon wrote: > On Fri, 31 Mar 2017 11:11:48 +0200 > Rafał Miłecki <zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > From: Rafał Miłecki <rafal-g1n6cQUeyibVItvQsEIGlw@public.gmane.org> > > > > This allows better compile-time optimizations with CONFIG_OF disabled. > > > > Signed-off-by: Rafał Miłecki <rafal-g1n6cQUeyibVItvQsEIGlw@public.gmane.org> > > Not sure we care about such micro-optimizations, but it shouldn't hurst > so, > > Acked-by: Boris Brezillon <boris.brezillon-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org> Applied -- 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 ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-04-19 18:39 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2017-03-31 9:11 [PATCH] mtd: use dev_of_node helper in mtd_get_of_node Rafał Miłecki [not found] ` <20170331091148.19816-1-zajec5-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> 2017-03-31 9:49 ` Boris Brezillon 2017-04-19 18:39 ` Brian Norris
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).