[U-Boot] [PATCH] include: Correct "requset" typoes in misc.h

Signed-off-by: Robert P. J. Day rpjday@crashcourse.ca
---
diff --git a/include/misc.h b/include/misc.h index 7e9badf..2b78814 100644 --- a/include/misc.h +++ b/include/misc.h @@ -32,7 +32,7 @@ int misc_write(struct udevice *dev, int offset, void *buf, int size); * * @dev: the device * @request: command to be sent to the device - * @buf: pointer to buffer related to the requset + * @buf: pointer to buffer related to the request * @return: 0 if OK, -ve on error */ int misc_ioctl(struct udevice *dev, unsigned long request, void *buf); @@ -70,7 +70,7 @@ struct misc_ops { * * @dev: the device * @request: command to be sent to the device - * @buf: pointer to buffer related to the requset + * @buf: pointer to buffer related to the request * @return: 0 if OK, -ve on error */ int (*ioctl)(struct udevice *dev, unsigned long request, void *buf);

Hi Robert,
On 2015年12月14日 19:28, Robert P. J. Day wrote:
Signed-off-by: Robert P. J. Day rpjday@crashcourse.ca
diff --git a/include/misc.h b/include/misc.h index 7e9badf..2b78814 100644 --- a/include/misc.h +++ b/include/misc.h @@ -32,7 +32,7 @@ int misc_write(struct udevice *dev, int offset, void *buf, int size);
- @dev: the device
- @request: command to be sent to the device
- @buf: pointer to buffer related to the requset
*/ int misc_ioctl(struct udevice *dev, unsigned long request, void *buf);
- @buf: pointer to buffer related to the request
- @return: 0 if OK, -ve on error
@@ -70,7 +70,7 @@ struct misc_ops { * * @dev: the device * @request: command to be sent to the device
* @buf: pointer to buffer related to the requset
* @buf: pointer to buffer related to the request
*/ int (*ioctl)(struct udevice *dev, unsigned long request, void *buf);
- @return: 0 if OK, -ve on error
Acked-by: Thomas Chou thomas@wytron.com.tw

On Mon, Dec 14, 2015 at 06:28:51AM -0500, Robert P. J. Day wrote:
Signed-off-by: Robert P. J. Day rpjday@crashcourse.ca Acked-by: Thomas Chou thomas@wytron.com.tw
diff --git a/include/misc.h b/include/misc.h index 7e9badf..2b78814 100644
Applied to u-boot/master, thanks!
participants (3)
-
Robert P. J. Day
-
Thomas Chou
-
Tom Rini