mirror of https://gitee.com/openkylin/linux.git
staging: keucr: usb.c: add blank lines after declarations
Add blank line after declarations in eucr_suspend and eucr_resume as reported by checkpatch. Signed-off-by: Mathias Engan <mathias.engan@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
cc0be81f00
commit
d734c05f08
|
@ -37,6 +37,7 @@ MODULE_DEVICE_TABLE(usb, eucr_usb_ids);
|
|||
static int eucr_suspend(struct usb_interface *iface, pm_message_t message)
|
||||
{
|
||||
struct us_data *us = usb_get_intfdata(iface);
|
||||
|
||||
pr_info("--- eucr_suspend ---\n");
|
||||
/* Wait until no command is running */
|
||||
mutex_lock(&us->dev_mutex);
|
||||
|
@ -51,8 +52,8 @@ static int eucr_suspend(struct usb_interface *iface, pm_message_t message)
|
|||
static int eucr_resume(struct usb_interface *iface)
|
||||
{
|
||||
u8 tmp = 0;
|
||||
|
||||
struct us_data *us = usb_get_intfdata(iface);
|
||||
|
||||
pr_info("--- eucr_resume---\n");
|
||||
mutex_lock(&us->dev_mutex);
|
||||
|
||||
|
|
Loading…
Reference in New Issue