Skip to content

Commit

Permalink
r8152: fix the wrong spelling
Browse files Browse the repository at this point in the history
Replace rumtime with runtime.

Signed-off-by: Hayes Wang <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
hayesorz authored and davem330 committed Jan 25, 2017
1 parent d234559 commit a9c54ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/net/usb/r8152.c
Original file line number Diff line number Diff line change
Expand Up @@ -3576,7 +3576,7 @@ static bool delay_autosuspend(struct r8152 *tp)
return false;
}

static int rtl8152_rumtime_suspend(struct r8152 *tp)
static int rtl8152_runtime_suspend(struct r8152 *tp)
{
struct net_device *netdev = tp->netdev;
int ret = 0;
Expand Down Expand Up @@ -3653,7 +3653,7 @@ static int rtl8152_suspend(struct usb_interface *intf, pm_message_t message)
mutex_lock(&tp->control);

if (PMSG_IS_AUTO(message))
ret = rtl8152_rumtime_suspend(tp);
ret = rtl8152_runtime_suspend(tp);
else
ret = rtl8152_system_suspend(tp);

Expand Down

0 comments on commit a9c54ad

Please sign in to comment.