Commit bfb9035c98906aafcd3cf22694fba2550997bf53
Committed by
Jiri Kosina
1 parent
395cf9691d
Exists in
master
and in
6 other branches
treewide: Correct spelling of successfully in comments
Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Showing 11 changed files with 12 additions and 12 deletions Side-by-side Diff
- drivers/media/video/cx18/cx18-mailbox.h
- drivers/net/igb/e1000_mbx.c
- drivers/net/igbvf/mbx.c
- drivers/net/ixgbe/ixgbe_mbx.c
- drivers/net/ixgbevf/mbx.c
- drivers/net/phy/broadcom.c
- drivers/net/tile/tilepro.c
- drivers/target/iscsi/iscsi_target_nego.c
- drivers/target/target_core_tpg.c
- kernel/sched.c
- sound/core/memalloc.c
drivers/media/video/cx18/cx18-mailbox.h
... | ... | @@ -69,7 +69,7 @@ |
69 | 69 | /* Each command can have up to 6 arguments */ |
70 | 70 | u32 args[MAX_MB_ARGUMENTS]; |
71 | 71 | /* The return code can be one of the codes in the file cx23418.h. If the |
72 | - command is completed successfuly, the error will be ERR_SYS_SUCCESS. | |
72 | + command is completed successfully, the error will be ERR_SYS_SUCCESS. | |
73 | 73 | If it is pending, the code is ERR_SYS_PENDING. If it failed, the error |
74 | 74 | code would indicate the task from which the error originated and will |
75 | 75 | be one of the errors in cx23418.h. In that case, the following |
drivers/net/igb/e1000_mbx.c
... | ... | @@ -34,7 +34,7 @@ |
34 | 34 | * @size: Length of buffer |
35 | 35 | * @mbx_id: id of mailbox to read |
36 | 36 | * |
37 | - * returns SUCCESS if it successfuly read message from buffer | |
37 | + * returns SUCCESS if it successfully read message from buffer | |
38 | 38 | **/ |
39 | 39 | s32 igb_read_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id) |
40 | 40 | { |
drivers/net/igbvf/mbx.c
... | ... | @@ -288,7 +288,7 @@ |
288 | 288 | * @msg: The message buffer |
289 | 289 | * @size: Length of buffer |
290 | 290 | * |
291 | - * returns SUCCESS if it successfuly read message from buffer | |
291 | + * returns SUCCESS if it successfully read message from buffer | |
292 | 292 | **/ |
293 | 293 | static s32 e1000_read_mbx_vf(struct e1000_hw *hw, u32 *msg, u16 size) |
294 | 294 | { |
drivers/net/ixgbe/ixgbe_mbx.c
... | ... | @@ -38,7 +38,7 @@ |
38 | 38 | * @size: Length of buffer |
39 | 39 | * @mbx_id: id of mailbox to read |
40 | 40 | * |
41 | - * returns SUCCESS if it successfuly read message from buffer | |
41 | + * returns SUCCESS if it successfully read message from buffer | |
42 | 42 | **/ |
43 | 43 | s32 ixgbe_read_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size, u16 mbx_id) |
44 | 44 | { |
drivers/net/ixgbevf/mbx.c
... | ... | @@ -276,7 +276,7 @@ |
276 | 276 | * @msg: The message buffer |
277 | 277 | * @size: Length of buffer |
278 | 278 | * |
279 | - * returns 0 if it successfuly read message from buffer | |
279 | + * returns 0 if it successfully read message from buffer | |
280 | 280 | **/ |
281 | 281 | static s32 ixgbevf_read_mbx_vf(struct ixgbe_hw *hw, u32 *msg, u16 size) |
282 | 282 | { |
drivers/net/phy/broadcom.c
... | ... | @@ -553,7 +553,7 @@ |
553 | 553 | /* |
554 | 554 | * There is no BCM5481 specification available, so down |
555 | 555 | * here is everything we know about "register 0x18". This |
556 | - * at least helps BCM5481 to successfuly receive packets | |
556 | + * at least helps BCM5481 to successfully receive packets | |
557 | 557 | * on MPC8360E-RDK board. Peter Barada <peterb@logicpd.com> |
558 | 558 | * says: "This sets delay between the RXD and RXC signals |
559 | 559 | * instead of using trace lengths to achieve timing". |
drivers/net/tile/tilepro.c
... | ... | @@ -177,7 +177,7 @@ |
177 | 177 | struct tile_net_stats_t stats; |
178 | 178 | /* True iff NAPI is enabled. */ |
179 | 179 | bool napi_enabled; |
180 | - /* True if this tile has succcessfully registered with the IPP. */ | |
180 | + /* True if this tile has successfully registered with the IPP. */ | |
181 | 181 | bool registered; |
182 | 182 | /* True if the link was down last time we tried to register. */ |
183 | 183 | bool link_down; |
drivers/target/iscsi/iscsi_target_nego.c
... | ... | @@ -504,7 +504,7 @@ |
504 | 504 | break; |
505 | 505 | case 1: |
506 | 506 | pr_debug("iSCSI security negotiation" |
507 | - " completed sucessfully.\n"); | |
507 | + " completed successfully.\n"); | |
508 | 508 | login->auth_complete = 1; |
509 | 509 | if ((login_req->flags & ISCSI_FLAG_LOGIN_NEXT_STAGE1) && |
510 | 510 | (login_req->flags & ISCSI_FLAG_LOGIN_TRANSIT)) { |
drivers/target/target_core_tpg.c
... | ... | @@ -593,7 +593,7 @@ |
593 | 593 | if (init_sess) |
594 | 594 | tpg->se_tpg_tfo->close_session(init_sess); |
595 | 595 | |
596 | - pr_debug("Successfuly changed queue depth to: %d for Initiator" | |
596 | + pr_debug("Successfully changed queue depth to: %d for Initiator" | |
597 | 597 | " Node: %s on %s Target Portal Group: %u\n", queue_depth, |
598 | 598 | initiatorname, tpg->se_tpg_tfo->get_fabric_name(), |
599 | 599 | tpg->se_tpg_tfo->tpg_get_tag(tpg)); |
kernel/sched.c
... | ... | @@ -1739,7 +1739,7 @@ |
1739 | 1739 | #ifdef CONFIG_SMP |
1740 | 1740 | /* |
1741 | 1741 | * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be |
1742 | - * successfuly executed on another CPU. We must ensure that updates of | |
1742 | + * successfully executed on another CPU. We must ensure that updates of | |
1743 | 1743 | * per-task data have been completed by this moment. |
1744 | 1744 | */ |
1745 | 1745 | smp_wmb(); |
sound/core/memalloc.c
... | ... | @@ -176,7 +176,7 @@ |
176 | 176 | * Calls the memory-allocator function for the corresponding |
177 | 177 | * buffer type. |
178 | 178 | * |
179 | - * Returns zero if the buffer with the given size is allocated successfuly, | |
179 | + * Returns zero if the buffer with the given size is allocated successfully, | |
180 | 180 | * other a negative value at error. |
181 | 181 | */ |
182 | 182 | int snd_dma_alloc_pages(int type, struct device *device, size_t size, |
... | ... | @@ -230,7 +230,7 @@ |
230 | 230 | * tries to allocate again. The size actually allocated is stored in |
231 | 231 | * res_size argument. |
232 | 232 | * |
233 | - * Returns zero if the buffer with the given size is allocated successfuly, | |
233 | + * Returns zero if the buffer with the given size is allocated successfully, | |
234 | 234 | * other a negative value at error. |
235 | 235 | */ |
236 | 236 | int snd_dma_alloc_pages_fallback(int type, struct device *device, size_t size, |