diff mbox

[U-Boot,v2,02/80] sandbox: Fix comment for os_open()

Message ID 1427307788-7496-3-git-send-email-sjg@chromium.org
State Accepted
Delegated to: Simon Glass
Headers show

Commit Message

Simon Glass March 25, 2015, 6:21 p.m. UTC
This has the wrong #define in the function comment. Fix it.

Signed-off-by: Simon Glass <sjg@chromium.org>
---

Changes in v2: None

 include/os.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass April 7, 2015, 6:39 p.m. UTC | #1
On 25 March 2015 at 12:21, Simon Glass <sjg@chromium.org> wrote:
> This has the wrong #define in the function comment. Fix it.
>
> Signed-off-by: Simon Glass <sjg@chromium.org>
> ---
>
> Changes in v2: None
>
>  include/os.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Applied to u-boot-dm/next.
diff mbox

Patch

diff --git a/include/os.h b/include/os.h
index e3645e0..a758f09 100644
--- a/include/os.h
+++ b/include/os.h
@@ -64,7 +64,7 @@  off_t os_lseek(int fd, off_t offset, int whence);
  * Access to the OS open() system call
  *
  * \param pathname	Pathname of file to open
- * \param flags		Flags, like O_RDONLY, O_RDWR
+ * \param flags		Flags, like OS_O_RDONLY, OS_O_RDWR
  * \return file descriptor, or -1 on error
  */
 int os_open(const char *pathname, int flags);