summaryrefslogtreecommitdiffstats
path: root/drivers/staging/gdm72xx
diff options
context:
space:
mode:
authorMichalis Pappas2014-05-09 12:08:23 +0200
committerGreg Kroah-Hartman2014-05-16 21:12:51 +0200
commit522c6ff211473d5da0c221e18be70e88a760d48f (patch)
tree7dd62767a3e41d042482c49d7454d1ce8eca18e2 /drivers/staging/gdm72xx
parentstaging: gdm72xx: Modify a struct allocation to match coding standards (diff)
downloadkernel-qcow2-linux-522c6ff211473d5da0c221e18be70e88a760d48f.tar.gz
kernel-qcow2-linux-522c6ff211473d5da0c221e18be70e88a760d48f.tar.xz
kernel-qcow2-linux-522c6ff211473d5da0c221e18be70e88a760d48f.zip
staging: gdm72xx: Move logical continuation to previous line to conform to coding style
Fixes the following checkpatch.pl issue: CHECK: Logical continuations should be on the previous line Signed-off-by: Michalis Pappas <mpappas@fastmail.fm> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/gdm72xx')
-rw-r--r--drivers/staging/gdm72xx/gdm_usb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/gdm72xx/gdm_usb.c b/drivers/staging/gdm72xx/gdm_usb.c
index 9ddf8f58d87b..b9d764395fb9 100644
--- a/drivers/staging/gdm72xx/gdm_usb.c
+++ b/drivers/staging/gdm72xx/gdm_usb.c
@@ -518,8 +518,8 @@ static void do_pm_control(struct work_struct *work)
usb_autopm_put_interface(udev->intf);
spin_lock_irqsave(&tx->lock, flags);
- if (!(udev->usbdev->state & USB_STATE_SUSPENDED)
- && (!list_empty(&tx->hci_list) || !list_empty(&tx->sdu_list))) {
+ if (!(udev->usbdev->state & USB_STATE_SUSPENDED) &&
+ (!list_empty(&tx->hci_list) || !list_empty(&tx->sdu_list))) {
struct usb_tx *t, *temp;
list_for_each_entry_safe(t, temp, &tx->pending_list, p_list) {