···6969 /* Each command can have up to 6 arguments */7070 u32 args[MAX_MB_ARGUMENTS];7171 /* The return code can be one of the codes in the file cx23418.h. If the7272- command is completed successfuly, the error will be ERR_SYS_SUCCESS.7272+ command is completed successfully, the error will be ERR_SYS_SUCCESS.7373 If it is pending, the code is ERR_SYS_PENDING. If it failed, the error7474 code would indicate the task from which the error originated and will7575 be one of the errors in cx23418.h. In that case, the following
+1-1
drivers/net/igb/e1000_mbx.c
···3434 * @size: Length of buffer3535 * @mbx_id: id of mailbox to read3636 *3737- * returns SUCCESS if it successfuly read message from buffer3737+ * returns SUCCESS if it successfully read message from buffer3838 **/3939s32 igb_read_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id)4040{
+1-1
drivers/net/igbvf/mbx.c
···288288 * @msg: The message buffer289289 * @size: Length of buffer290290 *291291- * returns SUCCESS if it successfuly read message from buffer291291+ * returns SUCCESS if it successfully read message from buffer292292 **/293293static s32 e1000_read_mbx_vf(struct e1000_hw *hw, u32 *msg, u16 size)294294{
+1-1
drivers/net/ixgbe/ixgbe_mbx.c
···3838 * @size: Length of buffer3939 * @mbx_id: id of mailbox to read4040 *4141- * returns SUCCESS if it successfuly read message from buffer4141+ * returns SUCCESS if it successfully read message from buffer4242 **/4343s32 ixgbe_read_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size, u16 mbx_id)4444{
+1-1
drivers/net/ixgbevf/mbx.c
···276276 * @msg: The message buffer277277 * @size: Length of buffer278278 *279279- * returns 0 if it successfuly read message from buffer279279+ * returns 0 if it successfully read message from buffer280280 **/281281static s32 ixgbevf_read_mbx_vf(struct ixgbe_hw *hw, u32 *msg, u16 size)282282{
+1-1
drivers/net/phy/broadcom.c
···553553 /*554554 * There is no BCM5481 specification available, so down555555 * here is everything we know about "register 0x18". This556556- * at least helps BCM5481 to successfuly receive packets556556+ * at least helps BCM5481 to successfully receive packets557557 * on MPC8360E-RDK board. Peter Barada <peterb@logicpd.com>558558 * says: "This sets delay between the RXD and RXC signals559559 * instead of using trace lengths to achieve timing".
+1-1
drivers/net/tile/tilepro.c
···177177 struct tile_net_stats_t stats;178178 /* True iff NAPI is enabled. */179179 bool napi_enabled;180180- /* True if this tile has succcessfully registered with the IPP. */180180+ /* True if this tile has successfully registered with the IPP. */181181 bool registered;182182 /* True if the link was down last time we tried to register. */183183 bool link_down;
···593593 if (init_sess)594594 tpg->se_tpg_tfo->close_session(init_sess);595595596596- pr_debug("Successfuly changed queue depth to: %d for Initiator"596596+ pr_debug("Successfully changed queue depth to: %d for Initiator"597597 " Node: %s on %s Target Portal Group: %u\n", queue_depth,598598 initiatorname, tpg->se_tpg_tfo->get_fabric_name(),599599 tpg->se_tpg_tfo->tpg_get_tag(tpg));
+1-1
kernel/sched.c
···17391739#ifdef CONFIG_SMP17401740 /*17411741 * After ->cpu is set up to a new value, task_rq_lock(p, ...) can be17421742- * successfuly executed on another CPU. We must ensure that updates of17421742+ * successfully executed on another CPU. We must ensure that updates of17431743 * per-task data have been completed by this moment.17441744 */17451745 smp_wmb();
+2-2
sound/core/memalloc.c
···176176 * Calls the memory-allocator function for the corresponding177177 * buffer type.178178 * 179179- * Returns zero if the buffer with the given size is allocated successfuly,179179+ * Returns zero if the buffer with the given size is allocated successfully,180180 * other a negative value at error.181181 */182182int snd_dma_alloc_pages(int type, struct device *device, size_t size,···230230 * tries to allocate again. The size actually allocated is stored in231231 * res_size argument.232232 * 233233- * Returns zero if the buffer with the given size is allocated successfuly,233233+ * Returns zero if the buffer with the given size is allocated successfully,234234 * other a negative value at error.235235 */236236int snd_dma_alloc_pages_fallback(int type, struct device *device, size_t size,