Commit bfb9035c authored by Joe Perches's avatar Joe Perches Committed by Jiri Kosina
Browse files

treewide: Correct spelling of successfully in comments



Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent 395cf969
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -69,7 +69,7 @@ struct cx18_mailbox {
    /* Each command can have up to 6 arguments */
    /* Each command can have up to 6 arguments */
    u32       args[MAX_MB_ARGUMENTS];
    u32       args[MAX_MB_ARGUMENTS];
    /* The return code can be one of the codes in the file cx23418.h. If the
    /* The return code can be one of the codes in the file cx23418.h. If the
       command is completed successfuly, the error will be ERR_SYS_SUCCESS.
       command is completed successfully, the error will be ERR_SYS_SUCCESS.
       If it is pending, the code is ERR_SYS_PENDING. If it failed, the error
       If it is pending, the code is ERR_SYS_PENDING. If it failed, the error
       code would indicate the task from which the error originated and will
       code would indicate the task from which the error originated and will
       be one of the errors in cx23418.h. In that case, the following
       be one of the errors in cx23418.h. In that case, the following
+1 −1
Original line number Original line Diff line number Diff line
@@ -34,7 +34,7 @@
 *  @size: Length of buffer
 *  @size: Length of buffer
 *  @mbx_id: id of mailbox to read
 *  @mbx_id: id of mailbox to read
 *
 *
 *  returns SUCCESS if it successfuly read message from buffer
 *  returns SUCCESS if it successfully read message from buffer
 **/
 **/
s32 igb_read_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id)
s32 igb_read_mbx(struct e1000_hw *hw, u32 *msg, u16 size, u16 mbx_id)
{
{
+1 −1
Original line number Original line Diff line number Diff line
@@ -288,7 +288,7 @@ static s32 e1000_write_mbx_vf(struct e1000_hw *hw, u32 *msg, u16 size)
 *  @msg: The message buffer
 *  @msg: The message buffer
 *  @size: Length of buffer
 *  @size: Length of buffer
 *
 *
 *  returns SUCCESS if it successfuly read message from buffer
 *  returns SUCCESS if it successfully read message from buffer
 **/
 **/
static s32 e1000_read_mbx_vf(struct e1000_hw *hw, u32 *msg, u16 size)
static s32 e1000_read_mbx_vf(struct e1000_hw *hw, u32 *msg, u16 size)
{
{
+1 −1
Original line number Original line Diff line number Diff line
@@ -38,7 +38,7 @@
 *  @size: Length of buffer
 *  @size: Length of buffer
 *  @mbx_id: id of mailbox to read
 *  @mbx_id: id of mailbox to read
 *
 *
 *  returns SUCCESS if it successfuly read message from buffer
 *  returns SUCCESS if it successfully read message from buffer
 **/
 **/
s32 ixgbe_read_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size, u16 mbx_id)
s32 ixgbe_read_mbx(struct ixgbe_hw *hw, u32 *msg, u16 size, u16 mbx_id)
{
{
+1 −1
Original line number Original line Diff line number Diff line
@@ -276,7 +276,7 @@ static s32 ixgbevf_write_mbx_vf(struct ixgbe_hw *hw, u32 *msg, u16 size)
 *  @msg: The message buffer
 *  @msg: The message buffer
 *  @size: Length of buffer
 *  @size: Length of buffer
 *
 *
 *  returns 0 if it successfuly read message from buffer
 *  returns 0 if it successfully read message from buffer
 **/
 **/
static s32 ixgbevf_read_mbx_vf(struct ixgbe_hw *hw, u32 *msg, u16 size)
static s32 ixgbevf_read_mbx_vf(struct ixgbe_hw *hw, u32 *msg, u16 size)
{
{
Loading