From mboxrd@z Thu Jan 1 00:00:00 1970 From: Igor Grinberg Date: Wed, 21 Jan 2015 13:59:57 +0200 Subject: [U-Boot] [PATCH v3 2/4] dm: add dev_get_addr prototype In-Reply-To: <1421838596-4176-3-git-send-email-Peng.Fan@freescale.com> References: <1421838596-4176-1-git-send-email-Peng.Fan@freescale.com> <1421838596-4176-3-git-send-email-Peng.Fan@freescale.com> Message-ID: <54BF94BD.6040604@compulab.co.il> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 01/21/15 13:09, Peng Fan wrote: > Signed-off-by: Peng Fan I think this should be a part of the first patch, anyway: Acked-by: Igor Grinberg > --- > include/dm/device.h | 9 +++++++++ > 1 file changed, 9 insertions(+) > > diff --git a/include/dm/device.h b/include/dm/device.h > index 13598a1..ee00c4d 100644 > --- a/include/dm/device.h > +++ b/include/dm/device.h > @@ -322,4 +322,13 @@ int device_find_first_child(struct udevice *parent, struct udevice **devp); > */ > int device_find_next_child(struct udevice **devp); > > + > +/** > + * dev_get_addr() - Get the reg property of a device > + * > + * @dev: Pointer to a device. Returns reg address, or NULL if no DT > + * > + * @return addr, or NULL if NO DT > + */ > +void *dev_get_addr(struct udevice *dev); > #endif > -- Regards, Igor.