aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorAdam Buchbinder <adam.buchbinder@gmail.com>2012-09-19 21:48:02 -0400
committerJiri Kosina <jkosina@suse.cz>2012-11-19 08:32:13 -0500
commitb3834be5c42a5d2fd85ff4b819fa38983b1450e6 (patch)
tree116f98f451a9f5ae4e205a19e927ad1727443f1a /drivers
parent48fc7f7e787dd65ffe88521bce31f4062ba273eb (diff)
various: Fix spelling of "asynchronous" in comments.
"Asynchronous" is misspelled in some comments. No code changes. Signed-off-by: Adam Buchbinder <adam.buchbinder@gmail.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/char/ipmi/ipmi_msghandler.c2
-rw-r--r--drivers/char/ipmi/ipmi_si_intf.c2
-rw-r--r--drivers/firewire/init_ohci1394_dma.c4
-rw-r--r--drivers/firewire/ohci.c2
-rw-r--r--drivers/net/ethernet/mellanox/mlx4/eq.c2
-rw-r--r--drivers/tty/ipwireless/setup_protocol.h2
6 files changed, 7 insertions, 7 deletions
diff --git a/drivers/char/ipmi/ipmi_msghandler.c b/drivers/char/ipmi/ipmi_msghandler.c
index a0c84bb30856..053201b062a4 100644
--- a/drivers/char/ipmi/ipmi_msghandler.c
+++ b/drivers/char/ipmi/ipmi_msghandler.c
@@ -3789,7 +3789,7 @@ static int handle_one_recv_msg(ipmi_smi_t intf,
3789 3789
3790 } else if ((msg->rsp[0] == ((IPMI_NETFN_APP_REQUEST|1) << 2)) 3790 } else if ((msg->rsp[0] == ((IPMI_NETFN_APP_REQUEST|1) << 2))
3791 && (msg->rsp[1] == IPMI_READ_EVENT_MSG_BUFFER_CMD)) { 3791 && (msg->rsp[1] == IPMI_READ_EVENT_MSG_BUFFER_CMD)) {
3792 /* It's an asyncronous event. */ 3792 /* It's an asynchronous event. */
3793 requeue = handle_read_event_rsp(intf, msg); 3793 requeue = handle_read_event_rsp(intf, msg);
3794 } else { 3794 } else {
3795 /* It's a response from the local BMC. */ 3795 /* It's a response from the local BMC. */
diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c
index 32a6c7e256bd..c9c3501784e0 100644
--- a/drivers/char/ipmi/ipmi_si_intf.c
+++ b/drivers/char/ipmi/ipmi_si_intf.c
@@ -155,7 +155,7 @@ enum si_stat_indexes {
155 /* Number of watchdog pretimeouts. */ 155 /* Number of watchdog pretimeouts. */
156 SI_STAT_watchdog_pretimeouts, 156 SI_STAT_watchdog_pretimeouts,
157 157
158 /* Number of asyncronous messages received. */ 158 /* Number of asynchronous messages received. */
159 SI_STAT_incoming_messages, 159 SI_STAT_incoming_messages,
160 160
161 161
diff --git a/drivers/firewire/init_ohci1394_dma.c b/drivers/firewire/init_ohci1394_dma.c
index a9a347adb353..2cc89ce745c9 100644
--- a/drivers/firewire/init_ohci1394_dma.c
+++ b/drivers/firewire/init_ohci1394_dma.c
@@ -149,10 +149,10 @@ static inline void __init init_ohci1394_initialize(struct ohci *ohci)
149 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, 0xffffffff); 149 reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, 0xffffffff);
150 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, 0xffffffff); 150 reg_write(ohci, OHCI1394_IsoXmitIntEventClear, 0xffffffff);
151 151
152 /* Accept asyncronous transfer requests from all nodes for now */ 152 /* Accept asynchronous transfer requests from all nodes for now */
153 reg_write(ohci, OHCI1394_AsReqFilterHiSet, 0x80000000); 153 reg_write(ohci, OHCI1394_AsReqFilterHiSet, 0x80000000);
154 154
155 /* Specify asyncronous transfer retries */ 155 /* Specify asynchronous transfer retries */
156 reg_write(ohci, OHCI1394_ATRetries, 156 reg_write(ohci, OHCI1394_ATRetries,
157 OHCI1394_MAX_AT_REQ_RETRIES | 157 OHCI1394_MAX_AT_REQ_RETRIES |
158 (OHCI1394_MAX_AT_RESP_RETRIES<<4) | 158 (OHCI1394_MAX_AT_RESP_RETRIES<<4) |
diff --git a/drivers/firewire/ohci.c b/drivers/firewire/ohci.c
index 834e71d2324d..961e4398664b 100644
--- a/drivers/firewire/ohci.c
+++ b/drivers/firewire/ohci.c
@@ -1281,7 +1281,7 @@ static int at_context_queue_packet(struct context *ctx,
1281 d[0].res_count = cpu_to_le16(packet->timestamp); 1281 d[0].res_count = cpu_to_le16(packet->timestamp);
1282 1282
1283 /* 1283 /*
1284 * The DMA format for asyncronous link packets is different 1284 * The DMA format for asynchronous link packets is different
1285 * from the IEEE1394 layout, so shift the fields around 1285 * from the IEEE1394 layout, so shift the fields around
1286 * accordingly. 1286 * accordingly.
1287 */ 1287 */
diff --git a/drivers/net/ethernet/mellanox/mlx4/eq.c b/drivers/net/ethernet/mellanox/mlx4/eq.c
index b84a88bc44dc..c48cf6f6529c 100644
--- a/drivers/net/ethernet/mellanox/mlx4/eq.c
+++ b/drivers/net/ethernet/mellanox/mlx4/eq.c
@@ -1267,7 +1267,7 @@ int mlx4_test_interrupts(struct mlx4_dev *dev)
1267 /* Temporary use polling for command completions */ 1267 /* Temporary use polling for command completions */
1268 mlx4_cmd_use_polling(dev); 1268 mlx4_cmd_use_polling(dev);
1269 1269
1270 /* Map the new eq to handle all asyncronous events */ 1270 /* Map the new eq to handle all asynchronous events */
1271 err = mlx4_MAP_EQ(dev, get_async_ev_mask(dev), 0, 1271 err = mlx4_MAP_EQ(dev, get_async_ev_mask(dev), 0,
1272 priv->eq_table.eq[i].eqn); 1272 priv->eq_table.eq[i].eqn);
1273 if (err) { 1273 if (err) {
diff --git a/drivers/tty/ipwireless/setup_protocol.h b/drivers/tty/ipwireless/setup_protocol.h
index 9d6bcc77c73c..002c34e72521 100644
--- a/drivers/tty/ipwireless/setup_protocol.h
+++ b/drivers/tty/ipwireless/setup_protocol.h
@@ -59,7 +59,7 @@ struct tl_setup_config_done_msg {
59 unsigned char sig_no; /* TL_SETUP_SIGNO_CONFIG_DONE_MSG */ 59 unsigned char sig_no; /* TL_SETUP_SIGNO_CONFIG_DONE_MSG */
60} __attribute__ ((__packed__)); 60} __attribute__ ((__packed__));
61 61
62/* Asyncronous messages */ 62/* Asynchronous messages */
63struct tl_setup_open_msg { 63struct tl_setup_open_msg {
64 unsigned char sig_no; /* TL_SETUP_SIGNO_OPEN_MSG */ 64 unsigned char sig_no; /* TL_SETUP_SIGNO_OPEN_MSG */
65 unsigned char port_no; 65 unsigned char port_no;