Skip to content

Commit 93b1fae

Browse files
AdrianBunkAdrian Bunk
authored andcommitted
spelling: s/trough/through/
Additionally, one comment was reformulated by Joe Perches <[email protected]>. Signed-off-by: Adrian Bunk <[email protected]>
1 parent 943ffb5 commit 93b1fae

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

arch/arm/mach-omap1/board-perseus2.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ static void __init omap_perseus2_map_io(void)
184184
omap_writel(0x00000088, OMAP730_FLASH_ACFG_0);
185185

186186
/*
187-
* Ethernet support trough the debug board
187+
* Ethernet support through the debug board
188188
* CS1 timings setup
189189
*/
190190
omap_writel(0x0000fff3, OMAP730_FLASH_CFG_1);

drivers/cdrom/cm206.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
18 mrt 1995: 0.24 Working background read-ahead. (still problems)
3333
26 mrt 1995: 0.25 Multi-session ioctl added (kernel v1.2).
3434
Statistics implemented, though separate stats206.h.
35-
Accessible trough ioctl 0x1000 (just a number).
35+
Accessible through ioctl 0x1000 (just a number).
3636
Hard to choose between v1.2 development and 1.1.75.
3737
Bottom-half doesn't work with 1.2...
3838
0.25a: fixed... typo. Still problems...

drivers/net/pcmcia/xirc2ps_cs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1598,7 +1598,7 @@ do_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
15981598
switch(cmd) {
15991599
case SIOCGMIIPHY: /* Get the address of the PHY in use. */
16001600
data[0] = 0; /* we have only this address */
1601-
/* fall trough */
1601+
/* fall through */
16021602
case SIOCGMIIREG: /* Read the specified MII register. */
16031603
data[3] = mii_rd(ioaddr, data[0] & 0x1f, data[1] & 0x1f);
16041604
break;

drivers/parisc/led.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ static void led_LCD_driver(unsigned char leds)
347347
**
348348
** led_get_net_activity()
349349
**
350-
** calculate if there was TX- or RX-troughput on the network interfaces
350+
** calculate if there was TX- or RX-throughput on the network interfaces
351351
** (analog to dev_get_info() from net/core/dev.c)
352352
**
353353
*/

drivers/usb/serial/usb-serial.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ static struct usb_serial_driver *search_serial_device(struct usb_interface *ifac
584584
const struct usb_device_id *id;
585585
struct usb_serial_driver *t;
586586

587-
/* List trough know devices and see if the usb id matches */
587+
/* Check if the usb id matches a known device */
588588
list_for_each(p, &usb_serial_driver_list) {
589589
t = list_entry(p, struct usb_serial_driver, driver_list);
590590
id = usb_match_id(iface, t->id_table);

net/ipv4/netfilter/ip_conntrack_proto_tcp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -995,7 +995,7 @@ static int tcp_packet(struct ip_conntrack *conntrack,
995995
|| (!test_bit(IPS_ASSURED_BIT, &conntrack->status)
996996
&& conntrack->proto.tcp.last_index == TCP_ACK_SET))
997997
&& ntohl(th->ack_seq) == conntrack->proto.tcp.last_end) {
998-
/* RST sent to invalid SYN or ACK we had let trough
998+
/* RST sent to invalid SYN or ACK we had let through
999999
* at a) and c) above:
10001000
*
10011001
* a) SYN was in window then
@@ -1006,7 +1006,7 @@ static int tcp_packet(struct ip_conntrack *conntrack,
10061006
* segments we ignored. */
10071007
goto in_window;
10081008
}
1009-
/* Just fall trough */
1009+
/* Just fall through */
10101010
default:
10111011
/* Keep compilers happy. */
10121012
break;

net/netfilter/nf_conntrack_proto_tcp.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ static int tcp_packet(struct nf_conn *conntrack,
988988
|| (!test_bit(IPS_ASSURED_BIT, &conntrack->status)
989989
&& conntrack->proto.tcp.last_index == TCP_ACK_SET))
990990
&& ntohl(th->ack_seq) == conntrack->proto.tcp.last_end) {
991-
/* RST sent to invalid SYN or ACK we had let trough
991+
/* RST sent to invalid SYN or ACK we had let through
992992
* at a) and c) above:
993993
*
994994
* a) SYN was in window then
@@ -999,7 +999,7 @@ static int tcp_packet(struct nf_conn *conntrack,
999999
* segments we ignored. */
10001000
goto in_window;
10011001
}
1002-
/* Just fall trough */
1002+
/* Just fall through */
10031003
default:
10041004
/* Keep compilers happy. */
10051005
break;

sound/pcmcia/pdaudiocf/pdaudiocf_pcm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ static int pdacf_pcm_prepare(struct snd_pcm_substream *subs)
209209
case SNDRV_PCM_FORMAT_S24_3LE:
210210
case SNDRV_PCM_FORMAT_S24_3BE:
211211
chip->pcm_sample = 3;
212-
/* fall trough */
212+
/* fall through */
213213
default: /* 24-bit */
214214
aval = AK4117_DIF_24R;
215215
chip->pcm_frame = 3;

0 commit comments

Comments
 (0)