mirror of
https://xff.cz/git/u-boot/
synced 2025-10-18 08:23:24 +02:00
misc: mark write buffer const
The write operation in misc_ops already takes a "const void *" buffer, but misc_write() takes a mutable "void *". There's no reason for this, so make misc_write() consistent with the standard write() prototype. Signed-off-by: John Keeping <john@metanate.com> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -28,7 +28,7 @@ int misc_read(struct udevice *dev, int offset, void *buf, int size);
|
||||
*
|
||||
* Return: number of bytes written if OK (may be < @size), -ve on error
|
||||
*/
|
||||
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);
|
||||
|
||||
/**
|
||||
* misc_ioctl() - Assert command to the device, optional.
|
||||
|
Reference in New Issue
Block a user