aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Delvare <khali@linux-fr.org>2009-06-04 10:20:28 -0400
committerJiri Kosina <jkosina@suse.cz>2009-06-12 12:01:50 -0400
commit3ac49a1c9928b4a242b3cb1d83bc1d5c9b8fcb50 (patch)
tree4237e93f0952c07da3e9ed74bc18845f41136c7b
parent4737f0978d6e64eae468e01fa181abf6499e6b84 (diff)
trivial: fix ETIMEOUT -> ETIMEDOUT typos
fix ETIMEOUT -> ETIMEDOUT typos Signed-off-by: Jean Delvare <khali@linux-fr.org> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r--arch/arm/mach-sa1100/jornada720_ssp.c4
-rw-r--r--drivers/net/qlge/qlge_main.c2
-rw-r--r--drivers/net/usb/usbnet.c2
-rw-r--r--drivers/staging/wlan-ng/hfa384x_usb.c2
-rw-r--r--kernel/rtmutex.c2
5 files changed, 6 insertions, 6 deletions
diff --git a/arch/arm/mach-sa1100/jornada720_ssp.c b/arch/arm/mach-sa1100/jornada720_ssp.c
index 28cf36967977..506a5e5a9ad5 100644
--- a/arch/arm/mach-sa1100/jornada720_ssp.c
+++ b/arch/arm/mach-sa1100/jornada720_ssp.c
@@ -54,7 +54,7 @@ EXPORT_SYMBOL(jornada_ssp_reverse);
54 * timeout after <timeout> rounds. Needs mcu running before its called. 54 * timeout after <timeout> rounds. Needs mcu running before its called.
55 * 55 *
56 * returns : %mcu output on success 56 * returns : %mcu output on success
57 * : %-ETIMEOUT on timeout 57 * : %-ETIMEDOUT on timeout
58 */ 58 */
59int jornada_ssp_byte(u8 byte) 59int jornada_ssp_byte(u8 byte)
60{ 60{
@@ -82,7 +82,7 @@ EXPORT_SYMBOL(jornada_ssp_byte);
82 * jornada_ssp_inout - decide if input is command or trading byte 82 * jornada_ssp_inout - decide if input is command or trading byte
83 * 83 *
84 * returns : (jornada_ssp_byte(byte)) on success 84 * returns : (jornada_ssp_byte(byte)) on success
85 * : %-ETIMEOUT on timeout failure 85 * : %-ETIMEDOUT on timeout failure
86 */ 86 */
87int jornada_ssp_inout(u8 byte) 87int jornada_ssp_inout(u8 byte)
88{ 88{
diff --git a/drivers/net/qlge/qlge_main.c b/drivers/net/qlge/qlge_main.c
index c92ced247947..1fd5ecb24425 100644
--- a/drivers/net/qlge/qlge_main.c
+++ b/drivers/net/qlge/qlge_main.c
@@ -3174,7 +3174,7 @@ static int ql_adapter_reset(struct ql_adapter *qdev)
3174 3174
3175 if (value & RST_FO_FR) { 3175 if (value & RST_FO_FR) {
3176 QPRINTK(qdev, IFDOWN, ERR, 3176 QPRINTK(qdev, IFDOWN, ERR,
3177 "ETIMEOUT!!! errored out of resetting the chip!\n"); 3177 "ETIMEDOUT!!! errored out of resetting the chip!\n");
3178 status = -ETIMEDOUT; 3178 status = -ETIMEDOUT;
3179 } 3179 }
3180 3180
diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c
index f3a2fce6166c..47f68cfa7e21 100644
--- a/drivers/net/usb/usbnet.c
+++ b/drivers/net/usb/usbnet.c
@@ -398,7 +398,7 @@ static void rx_complete (struct urb *urb)
398 398
399 /* stalls need manual reset. this is rare ... except that 399 /* stalls need manual reset. this is rare ... except that
400 * when going through USB 2.0 TTs, unplug appears this way. 400 * when going through USB 2.0 TTs, unplug appears this way.
401 * we avoid the highspeed version of the ETIMEOUT/EILSEQ 401 * we avoid the highspeed version of the ETIMEDOUT/EILSEQ
402 * storm, recovering as needed. 402 * storm, recovering as needed.
403 */ 403 */
404 case -EPIPE: 404 case -EPIPE:
diff --git a/drivers/staging/wlan-ng/hfa384x_usb.c b/drivers/staging/wlan-ng/hfa384x_usb.c
index 888198c9a106..824e65bdc433 100644
--- a/drivers/staging/wlan-ng/hfa384x_usb.c
+++ b/drivers/staging/wlan-ng/hfa384x_usb.c
@@ -2424,7 +2424,7 @@ int hfa384x_drvr_ramdl_write(hfa384x_t *hw, u32 daddr, void *buf, u32 len)
2424* 0 success 2424* 0 success
2425* >0 f/w reported error - f/w status code 2425* >0 f/w reported error - f/w status code
2426* <0 driver reported error 2426* <0 driver reported error
2427* -ETIMEOUT timout waiting for the cmd regs to become 2427* -ETIMEDOUT timout waiting for the cmd regs to become
2428* available, or waiting for the control reg 2428* available, or waiting for the control reg
2429* to indicate the Aux port is enabled. 2429* to indicate the Aux port is enabled.
2430* -ENODATA the buffer does NOT contain a valid PDA. 2430* -ENODATA the buffer does NOT contain a valid PDA.
diff --git a/kernel/rtmutex.c b/kernel/rtmutex.c
index 820c5af44f3e..fcd107a78c5a 100644
--- a/kernel/rtmutex.c
+++ b/kernel/rtmutex.c
@@ -902,7 +902,7 @@ EXPORT_SYMBOL_GPL(rt_mutex_lock_interruptible);
902 * Returns: 902 * Returns:
903 * 0 on success 903 * 0 on success
904 * -EINTR when interrupted by a signal 904 * -EINTR when interrupted by a signal
905 * -ETIMEOUT when the timeout expired 905 * -ETIMEDOUT when the timeout expired
906 * -EDEADLK when the lock would deadlock (when deadlock detection is on) 906 * -EDEADLK when the lock would deadlock (when deadlock detection is on)
907 */ 907 */
908int 908int