Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
e4a874f0
Commit
e4a874f0
authored
Apr 19, 2003
by
Andries E. Brouwer
Committed by
Linus Torvalds
Apr 19, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] s/to long/too long/
parent
e02fafe8
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
18 additions
and
17 deletions
+18
-17
Documentation/isdn/README.hysdn
Documentation/isdn/README.hysdn
+1
-1
drivers/bluetooth/btuart_cs.c
drivers/bluetooth/btuart_cs.c
+2
-2
drivers/bluetooth/dtl1_cs.c
drivers/bluetooth/dtl1_cs.c
+2
-2
drivers/isdn/hisax/amd7930_fn.c
drivers/isdn/hisax/amd7930_fn.c
+1
-1
drivers/isdn/hisax/hfc_sx.c
drivers/isdn/hisax/hfc_sx.c
+1
-1
drivers/net/irda/ali-ircc.c
drivers/net/irda/ali-ircc.c
+1
-1
drivers/net/irda/irport.c
drivers/net/irda/irport.c
+2
-2
drivers/net/sk98lin/skvpd.c
drivers/net/sk98lin/skvpd.c
+2
-1
drivers/net/skfp/hwmtm.c
drivers/net/skfp/hwmtm.c
+1
-1
drivers/net/tokenring/tms380tr.c
drivers/net/tokenring/tms380tr.c
+1
-1
drivers/usb/image/mdc800.c
drivers/usb/image/mdc800.c
+1
-1
include/linux/hysdn_if.h
include/linux/hysdn_if.h
+1
-1
net/irda/discovery.c
net/irda/discovery.c
+1
-1
net/irda/iriap.c
net/irda/iriap.c
+1
-1
No files found.
Documentation/isdn/README.hysdn
View file @
e4a874f0
...
...
@@ -131,7 +131,7 @@ Table of contents
1006 Second boot stage failure
1007 Timeout waiting for card ready during boot
1008 Operation only allowed in booted state
1009 Config line to long
1009 Config line to
o
long
1010 Invalid channel number
1011 Timeout sending config data
...
...
drivers/bluetooth/btuart_cs.c
View file @
e4a874f0
...
...
@@ -294,7 +294,7 @@ static void btuart_receive(btuart_info_t *info)
}
/* Make sure we don't stay here to long */
/* Make sure we don't stay here to
o
long */
if
(
boguscount
++
>
16
)
break
;
...
...
@@ -343,7 +343,7 @@ void btuart_interrupt(int irq, void *dev_inst, struct pt_regs *regs)
break
;
}
/* Make sure we don't stay here to long */
/* Make sure we don't stay here to
o
long */
if
(
boguscount
++
>
100
)
break
;
...
...
drivers/bluetooth/dtl1_cs.c
View file @
e4a874f0
...
...
@@ -297,7 +297,7 @@ static void dtl1_receive(dtl1_info_t *info)
}
/* Make sure we don't stay here to long */
/* Make sure we don't stay here to
o
long */
if
(
boguscount
++
>
32
)
break
;
...
...
@@ -347,7 +347,7 @@ void dtl1_interrupt(int irq, void *dev_inst, struct pt_regs *regs)
break
;
}
/* Make sure we don't stay here to long */
/* Make sure we don't stay here to
o
long */
if
(
boguscount
++
>
100
)
break
;
...
...
drivers/isdn/hisax/amd7930_fn.c
View file @
e4a874f0
...
...
@@ -330,7 +330,7 @@ Amd7930_empty_Dfifo(struct IsdnCardState *cs, int flag)
sched_d_event
(
cs
,
D_RCVBUFREADY
);
}
}
/* Packet to long, overflow */
/* Packet to
o
long, overflow */
if
(
cs
->
rcvidx
>=
MAX_DFRAME_LEN_L1
)
{
if
(
cs
->
debug
&
L1_DEB_WARN
)
debugl1
(
cs
,
"AMD7930: empty_Dfifo L2-Framelength overrun"
);
...
...
drivers/isdn/hisax/hfc_sx.c
View file @
e4a874f0
...
...
@@ -147,7 +147,7 @@ write_fifo(struct IsdnCardState *cs, struct sk_buff *skb, u8 fifo, int trans_max
count
+=
fifo_size
;
/* free bytes */
if
(
count
<
skb
->
len
+
1
)
return
(
0
);
/* no room */
count
=
fifo_size
-
count
;
/* bytes still not send */
if
(
count
>
2
*
trans_max
)
return
(
0
);
/* delay to long */
if
(
count
>
2
*
trans_max
)
return
(
0
);
/* delay to
o
long */
count
=
skb
->
len
;
src
=
skb
->
data
;
while
(
count
--
)
...
...
drivers/net/irda/ali-ircc.c
View file @
e4a874f0
...
...
@@ -854,7 +854,7 @@ static void ali_ircc_sir_receive(struct ali_ircc_cb *self)
async_unwrap_char
(
self
->
netdev
,
&
self
->
stats
,
&
self
->
rx_buff
,
inb
(
iobase
+
UART_RX
));
/* Make sure we don't stay here to long */
/* Make sure we don't stay here to
o
long */
if
(
boguscount
++
>
32
)
{
IRDA_DEBUG
(
2
,
"%s(), breaking!
\n
"
,
__FUNCTION__
);
break
;
...
...
drivers/net/irda/irport.c
View file @
e4a874f0
...
...
@@ -707,7 +707,7 @@ static void irport_receive(struct irport_cb *self)
async_unwrap_char
(
self
->
netdev
,
&
self
->
stats
,
&
self
->
rx_buff
,
inb
(
iobase
+
UART_RX
));
/* Make sure we don't stay here to long */
/* Make sure we don't stay here to
o
long */
if
(
boguscount
++
>
32
)
{
IRDA_DEBUG
(
2
,
"%s(), breaking!
\n
"
,
__FUNCTION__
);
break
;
...
...
@@ -764,7 +764,7 @@ void irport_interrupt(int irq, void *dev_id, struct pt_regs *regs)
break
;
}
/* Make sure we don't stay here to long */
/* Make sure we don't stay here to
o
long */
if
(
boguscount
++
>
100
)
break
;
...
...
drivers/net/sk98lin/skvpd.c
View file @
e4a874f0
...
...
@@ -1064,7 +1064,8 @@ char *buf) /* buffer where the keyword value can be read from */
len
=
VPD_MAX_LEN
;
rtv
=
2
;
SK_DBG_MSG
(
pAC
,
SK_DBGMOD_VPD
,
SK_DBGCAT_ERR
,
(
"keyword to long, cut after %d bytes
\n
"
,
VPD_MAX_LEN
))
;
(
"keyword too long, cut after %d bytes
\n
"
,
VPD_MAX_LEN
));
}
if
((
rtv2
=
VpdSetupPara
(
pAC
,
key
,
buf
,
len
,
VPD_RW_KEY
,
OWR_KEY
))
!=
0
)
{
SK_DBG_MSG
(
pAC
,
SK_DBGMOD_VPD
,
SK_DBGCAT_ERR
,
...
...
drivers/net/skfp/hwmtm.c
View file @
e4a874f0
...
...
@@ -1202,7 +1202,7 @@ struct s_smc *smc ;
goto
abort_frame
;
}
if
(
len
>
FDDI_RAW_MTU
-
4
)
{
DB_RX
(
"Frame to long error"
,
0
,
0
,
2
)
;
DB_RX
(
"Frame to
o
long error"
,
0
,
0
,
2
)
;
smc
->
hw
.
fp
.
err_stats
.
err_too_long
++
;
goto
abort_frame
;
}
...
...
drivers/net/tokenring/tms380tr.c
View file @
e4a874f0
...
...
@@ -761,7 +761,7 @@ static void tms380tr_timer_chk(unsigned long data)
if
(
time_before
(
tp
->
LastSendTime
+
SEND_TIMEOUT
,
jiffies
)
&&
(
tp
->
QueueSkb
<
MAX_TX_QUEUE
||
tp
->
TplFree
!=
tp
->
TplBusy
))
{
/* Anything to send, but stalled to long */
/* Anything to send, but stalled to
o
long */
tp
->
LastSendTime
=
jiffies
;
tms380tr_exec_cmd
(
dev
,
OC_CLOSE
);
/* Does reopen automatically */
}
...
...
drivers/usb/image/mdc800.c
View file @
e4a874f0
...
...
@@ -806,7 +806,7 @@ static ssize_t mdc800_device_write (struct file *file, const char *buf, size_t l
}
else
{
err
(
"Command is to long !
\n
"
);
err
(
"Command is to
o
long !
\n
"
);
up
(
&
mdc800
->
io_lock
);
return
-
EIO
;
}
...
...
include/linux/hysdn_if.h
View file @
e4a874f0
...
...
@@ -24,7 +24,7 @@
#define ERR_BOOTSEQ_FAIL 1006
/* 2. stage boot seq handshake timeout */
#define ERR_POF_TIMEOUT 1007
/* timeout waiting for card pof ready */
#define ERR_NOT_BOOTED 1008
/* operation only allowed when booted */
#define ERR_CONF_LONG 1009
/* conf line is to long */
#define ERR_CONF_LONG 1009
/* conf line is to
o
long */
#define ERR_INV_CHAN 1010
/* invalid channel number */
#define ERR_ASYNC_TIME 1011
/* timeout sending async data */
...
...
net/irda/discovery.c
View file @
e4a874f0
...
...
@@ -140,7 +140,7 @@ void irlmp_add_discovery_log(hashbin_t *cachelog, hashbin_t *log)
/*
* Function irlmp_expire_discoveries (log, saddr, force)
*
* Go through all discoveries and expire all that has stayed to long
* Go through all discoveries and expire all that has stayed to
o
long
*
* Note : this assume that IrLAP won't change its saddr, which
* currently is a valid assumption...
...
...
net/irda/iriap.c
View file @
e4a874f0
...
...
@@ -944,7 +944,7 @@ void iriap_call_indication(struct iriap_cb *self, struct sk_buff *skb)
/*
* Function iriap_watchdog_timer_expired (data)
*
* Query has taken to long time, so abort
* Query has taken to
o
long time, so abort
*
*/
void
iriap_watchdog_timer_expired
(
void
*
data
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment