Commit 3ac49a1c authored by Jean Delvare's avatar Jean Delvare Committed by Jiri Kosina

trivial: fix ETIMEOUT -> ETIMEDOUT typos

fix ETIMEOUT -> ETIMEDOUT typos
Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 4737f097
...@@ -54,7 +54,7 @@ EXPORT_SYMBOL(jornada_ssp_reverse); ...@@ -54,7 +54,7 @@ EXPORT_SYMBOL(jornada_ssp_reverse);
* timeout after <timeout> rounds. Needs mcu running before its called. * timeout after <timeout> rounds. Needs mcu running before its called.
* *
* returns : %mcu output on success * returns : %mcu output on success
* : %-ETIMEOUT on timeout * : %-ETIMEDOUT on timeout
*/ */
int jornada_ssp_byte(u8 byte) int jornada_ssp_byte(u8 byte)
{ {
...@@ -82,7 +82,7 @@ EXPORT_SYMBOL(jornada_ssp_byte); ...@@ -82,7 +82,7 @@ EXPORT_SYMBOL(jornada_ssp_byte);
* jornada_ssp_inout - decide if input is command or trading byte * jornada_ssp_inout - decide if input is command or trading byte
* *
* returns : (jornada_ssp_byte(byte)) on success * returns : (jornada_ssp_byte(byte)) on success
* : %-ETIMEOUT on timeout failure * : %-ETIMEDOUT on timeout failure
*/ */
int jornada_ssp_inout(u8 byte) int jornada_ssp_inout(u8 byte)
{ {
......
...@@ -3174,7 +3174,7 @@ static int ql_adapter_reset(struct ql_adapter *qdev) ...@@ -3174,7 +3174,7 @@ static int ql_adapter_reset(struct ql_adapter *qdev)
if (value & RST_FO_FR) { if (value & RST_FO_FR) {
QPRINTK(qdev, IFDOWN, ERR, QPRINTK(qdev, IFDOWN, ERR,
"ETIMEOUT!!! errored out of resetting the chip!\n"); "ETIMEDOUT!!! errored out of resetting the chip!\n");
status = -ETIMEDOUT; status = -ETIMEDOUT;
} }
......
...@@ -398,7 +398,7 @@ static void rx_complete (struct urb *urb) ...@@ -398,7 +398,7 @@ static void rx_complete (struct urb *urb)
/* stalls need manual reset. this is rare ... except that /* stalls need manual reset. this is rare ... except that
* when going through USB 2.0 TTs, unplug appears this way. * when going through USB 2.0 TTs, unplug appears this way.
* we avoid the highspeed version of the ETIMEOUT/EILSEQ * we avoid the highspeed version of the ETIMEDOUT/EILSEQ
* storm, recovering as needed. * storm, recovering as needed.
*/ */
case -EPIPE: case -EPIPE:
......
...@@ -2424,7 +2424,7 @@ int hfa384x_drvr_ramdl_write(hfa384x_t *hw, u32 daddr, void *buf, u32 len) ...@@ -2424,7 +2424,7 @@ int hfa384x_drvr_ramdl_write(hfa384x_t *hw, u32 daddr, void *buf, u32 len)
* 0 success * 0 success
* >0 f/w reported error - f/w status code * >0 f/w reported error - f/w status code
* <0 driver reported error * <0 driver reported error
* -ETIMEOUT timout waiting for the cmd regs to become * -ETIMEDOUT timout waiting for the cmd regs to become
* available, or waiting for the control reg * available, or waiting for the control reg
* to indicate the Aux port is enabled. * to indicate the Aux port is enabled.
* -ENODATA the buffer does NOT contain a valid PDA. * -ENODATA the buffer does NOT contain a valid PDA.
......
...@@ -902,7 +902,7 @@ EXPORT_SYMBOL_GPL(rt_mutex_lock_interruptible); ...@@ -902,7 +902,7 @@ EXPORT_SYMBOL_GPL(rt_mutex_lock_interruptible);
* Returns: * Returns:
* 0 on success * 0 on success
* -EINTR when interrupted by a signal * -EINTR when interrupted by a signal
* -ETIMEOUT when the timeout expired * -ETIMEDOUT when the timeout expired
* -EDEADLK when the lock would deadlock (when deadlock detection is on) * -EDEADLK when the lock would deadlock (when deadlock detection is on)
*/ */
int int
......
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