Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b3834be5 authored by Adam Buchbinder's avatar Adam Buchbinder Committed by Jiri Kosina
Browse files

various: Fix spelling of "asynchronous" in comments.



"Asynchronous" is misspelled in some comments. No code changes.

Signed-off-by: default avatarAdam Buchbinder <adam.buchbinder@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 48fc7f7e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3789,7 +3789,7 @@ static int handle_one_recv_msg(ipmi_smi_t intf,

	} else if ((msg->rsp[0] == ((IPMI_NETFN_APP_REQUEST|1) << 2))
		   && (msg->rsp[1] == IPMI_READ_EVENT_MSG_BUFFER_CMD)) {
		/* It's an asyncronous event. */
		/* It's an asynchronous event. */
		requeue = handle_read_event_rsp(intf, msg);
	} else {
		/* It's a response from the local BMC. */
+1 −1
Original line number Diff line number Diff line
@@ -155,7 +155,7 @@ enum si_stat_indexes {
	/* Number of watchdog pretimeouts. */
	SI_STAT_watchdog_pretimeouts,

	/* Number of asyncronous messages received. */
	/* Number of asynchronous messages received. */
	SI_STAT_incoming_messages,


+2 −2
Original line number Diff line number Diff line
@@ -149,10 +149,10 @@ static inline void __init init_ohci1394_initialize(struct ohci *ohci)
	reg_write(ohci, OHCI1394_IsoXmitIntMaskClear, 0xffffffff);
	reg_write(ohci, OHCI1394_IsoXmitIntEventClear, 0xffffffff);

	/* Accept asyncronous transfer requests from all nodes for now */
	/* Accept asynchronous transfer requests from all nodes for now */
	reg_write(ohci, OHCI1394_AsReqFilterHiSet, 0x80000000);

	/* Specify asyncronous transfer retries */
	/* Specify asynchronous transfer retries */
	reg_write(ohci, OHCI1394_ATRetries,
		  OHCI1394_MAX_AT_REQ_RETRIES |
		  (OHCI1394_MAX_AT_RESP_RETRIES<<4) |
+1 −1
Original line number Diff line number Diff line
@@ -1281,7 +1281,7 @@ static int at_context_queue_packet(struct context *ctx,
	d[0].res_count = cpu_to_le16(packet->timestamp);

	/*
	 * The DMA format for asyncronous link packets is different
	 * The DMA format for asynchronous link packets is different
	 * from the IEEE1394 layout, so shift the fields around
	 * accordingly.
	 */
+1 −1
Original line number Diff line number Diff line
@@ -1267,7 +1267,7 @@ int mlx4_test_interrupts(struct mlx4_dev *dev)
		/* Temporary use polling for command completions */
		mlx4_cmd_use_polling(dev);

		/* Map the new eq to handle all asyncronous events */
		/* Map the new eq to handle all asynchronous events */
		err = mlx4_MAP_EQ(dev, get_async_ev_mask(dev), 0,
				  priv->eq_table.eq[i].eqn);
		if (err) {
Loading