diff options
author | Simon Glass <sjg@chromium.org> | 2015-03-25 12:21:54 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-04-18 11:11:19 -0600 |
commit | 3479253dad2ac9d1c71f4843aae52ea7cd0c7716 (patch) | |
tree | 332ecc5cc4d545a14cc0097b44bc51d432001842 /include/dm | |
parent | 2c03c4633b092d695d04bd38053da4d7dc59a9a5 (diff) | |
download | u-boot-imx-3479253dad2ac9d1c71f4843aae52ea7cd0c7716.zip u-boot-imx-3479253dad2ac9d1c71f4843aae52ea7cd0c7716.tar.gz u-boot-imx-3479253dad2ac9d1c71f4843aae52ea7cd0c7716.tar.bz2 |
dm: core: Convert driver_bind() to use const
The driver is not modified by driver model, so update driver_bind() to
recognise that.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'include/dm')
-rw-r--r-- | include/dm/device-internal.h | 2 | ||||
-rw-r--r-- | include/dm/device.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/dm/device-internal.h b/include/dm/device-internal.h index e2418fe..687462b 100644 --- a/include/dm/device-internal.h +++ b/include/dm/device-internal.h @@ -34,7 +34,7 @@ struct udevice; * @devp: Returns a pointer to the bound device * @return 0 if OK, -ve on error */ -int device_bind(struct udevice *parent, struct driver *drv, +int device_bind(struct udevice *parent, const struct driver *drv, const char *name, void *platdata, int of_offset, struct udevice **devp); diff --git a/include/dm/device.h b/include/dm/device.h index f27b34b..fafecce 100644 --- a/include/dm/device.h +++ b/include/dm/device.h @@ -70,7 +70,7 @@ struct driver_info; * when the device is probed and will be unique within the device's uclass. */ struct udevice { - struct driver *driver; + const struct driver *driver; const char *name; void *platdata; void *parent_platdata; |