summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2022-01-24 10:39:28 -0500
committerTom Rini <[email protected]>2022-01-24 10:39:28 -0500
commit21a1439d986a889cefbc2ed785c3f592fc9266de (patch)
tree3ff70c21854c4a1bdbf60414d6fead53c0982049 /drivers
parentae35c59389b9b67e1e553bc9ed3e6fd93cfdb86f (diff)
parent480245cf273dfd14536dc2b30aff0a733b71a1ed (diff)
Merge branch '2022-01-24-assorted-fixes-and-updates'
- Assorted dumpimage/mkimage fixes, allow setting the signature algorithm on the command line with mkimage - Bugfix to the misc uclass, CONFIG_MP / CMD_MP Kconfig logic improved, updated Xen platform MAINTAINERS entry and fixed vexpress_aemv8a_semi booting.
Diffstat (limited to 'drivers')
-rw-r--r--drivers/misc/misc-uclass.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/misc-uclass.c b/drivers/misc/misc-uclass.c
index cbfacc3801a..cfe9d562fa0 100644
--- a/drivers/misc/misc-uclass.c
+++ b/drivers/misc/misc-uclass.c
@@ -26,7 +26,7 @@ int misc_read(struct udevice *dev, int offset, void *buf, int size)
return ops->read(dev, offset, buf, size);
}
-int misc_write(struct udevice *dev, int offset, void *buf, int size)
+int misc_write(struct udevice *dev, int offset, const void *buf, int size)
{
const struct misc_ops *ops = device_get_ops(dev);