Commit 8fdbb340 authored by Masanari Iida's avatar Masanari Iida Committed by Jiri Kosina

messages: i2o: Fix typo in messages/i2o

Correct spelling typo in messages/i2o.
Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 4092bac7
...@@ -138,7 +138,7 @@ VI. Setting Parameters ...@@ -138,7 +138,7 @@ VI. Setting Parameters
The return value is the size in bytes of the data written into The return value is the size in bytes of the data written into
ops->resbuf if no errors occur. If an error occurs, -1 is returned ops->resbuf if no errors occur. If an error occurs, -1 is returned
and errno is set appropriatly: and errno is set appropriately:
EFAULT Invalid user space pointer was passed EFAULT Invalid user space pointer was passed
ENXIO Invalid IOP number ENXIO Invalid IOP number
...@@ -222,7 +222,7 @@ VIII. Downloading Software ...@@ -222,7 +222,7 @@ VIII. Downloading Software
RETURNS RETURNS
This function returns 0 no errors occur. If an error occurs, -1 This function returns 0 no errors occur. If an error occurs, -1
is returned and errno is set appropriatly: is returned and errno is set appropriately:
EFAULT Invalid user space pointer was passed EFAULT Invalid user space pointer was passed
ENXIO Invalid IOP number ENXIO Invalid IOP number
...@@ -264,7 +264,7 @@ IX. Uploading Software ...@@ -264,7 +264,7 @@ IX. Uploading Software
RETURNS RETURNS
This function returns 0 if no errors occur. If an error occurs, -1 This function returns 0 if no errors occur. If an error occurs, -1
is returned and errno is set appropriatly: is returned and errno is set appropriately:
EFAULT Invalid user space pointer was passed EFAULT Invalid user space pointer was passed
ENXIO Invalid IOP number ENXIO Invalid IOP number
...@@ -301,7 +301,7 @@ X. Removing Software ...@@ -301,7 +301,7 @@ X. Removing Software
RETURNS RETURNS
This function returns 0 if no errors occur. If an error occurs, -1 This function returns 0 if no errors occur. If an error occurs, -1
is returned and errno is set appropriatly: is returned and errno is set appropriately:
EFAULT Invalid user space pointer was passed EFAULT Invalid user space pointer was passed
ENXIO Invalid IOP number ENXIO Invalid IOP number
...@@ -325,7 +325,7 @@ X. Validating Configuration ...@@ -325,7 +325,7 @@ X. Validating Configuration
RETURNS RETURNS
This function returns 0 if no erro occur. If an error occurs, -1 is This function returns 0 if no erro occur. If an error occurs, -1 is
returned and errno is set appropriatly: returned and errno is set appropriately:
ETIMEDOUT Timeout waiting for reply message ETIMEDOUT Timeout waiting for reply message
ENXIO Invalid IOP number ENXIO Invalid IOP number
...@@ -360,7 +360,7 @@ XI. Configuration Dialog ...@@ -360,7 +360,7 @@ XI. Configuration Dialog
RETURNS RETURNS
This function returns 0 if no error occur. If an error occurs, -1 This function returns 0 if no error occur. If an error occurs, -1
is returned and errno is set appropriatly: is returned and errno is set appropriately:
EFAULT Invalid user space pointer was passed EFAULT Invalid user space pointer was passed
ENXIO Invalid IOP number ENXIO Invalid IOP number
......
...@@ -609,7 +609,7 @@ static int i2o_block_release(struct gendisk *disk, fmode_t mode) ...@@ -609,7 +609,7 @@ static int i2o_block_release(struct gendisk *disk, fmode_t mode)
u8 operation; u8 operation;
/* /*
* This is to deail with the case of an application * This is to deal with the case of an application
* opening a device and then the device disappears while * opening a device and then the device disappears while
* it's in use, and then the application tries to release * it's in use, and then the application tries to release
* it. ex: Unmounting a deleted RAID volume at reboot. * it. ex: Unmounting a deleted RAID volume at reboot.
......
...@@ -189,7 +189,7 @@ static int i2o_cfg_parms(unsigned long arg, unsigned int type) ...@@ -189,7 +189,7 @@ static int i2o_cfg_parms(unsigned long arg, unsigned int type)
return -ENXIO; return -ENXIO;
/* /*
* Stop users being able to try and allocate arbitary amounts * Stop users being able to try and allocate arbitrary amounts
* of DMA space. 64K is way more than sufficient for this. * of DMA space. 64K is way more than sufficient for this.
*/ */
if (kcmd.oplen > 65536) if (kcmd.oplen > 65536)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment