Commit 16325f18eaa6066c4b913a5661fc8190ce564f7c
Committed by
Greg Kroah-Hartman
1 parent
34404082bb
Exists in
master
and in
39 other branches
USB: host: uhci-q: Fixed minor coding style issues
Fixed coding style issues (delete trailing whitespaces, break long line) Signed-off-by: Tobias Ollmann <tobias.ollmann@gmx.at> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Showing 1 changed file with 7 additions and 5 deletions Side-by-side Diff
drivers/usb/host/uhci-q.c
... | ... | @@ -29,7 +29,7 @@ |
29 | 29 | { |
30 | 30 | if (uhci->is_stopped) |
31 | 31 | mod_timer(&uhci_to_hcd(uhci)->rh_timer, jiffies); |
32 | - uhci->term_td->status |= cpu_to_le32(TD_CTRL_IOC); | |
32 | + uhci->term_td->status |= cpu_to_le32(TD_CTRL_IOC); | |
33 | 33 | } |
34 | 34 | |
35 | 35 | static inline void uhci_clear_next_interrupt(struct uhci_hcd *uhci) |
... | ... | @@ -195,7 +195,9 @@ |
195 | 195 | } else { |
196 | 196 | struct uhci_td *ntd; |
197 | 197 | |
198 | - ntd = list_entry(td->fl_list.next, struct uhci_td, fl_list); | |
198 | + ntd = list_entry(td->fl_list.next, | |
199 | + struct uhci_td, | |
200 | + fl_list); | |
199 | 201 | uhci->frame[td->frame] = LINK_TO_TD(ntd); |
200 | 202 | uhci->frame_cpu[td->frame] = ntd; |
201 | 203 | } |
... | ... | @@ -728,7 +730,7 @@ |
728 | 730 | |
729 | 731 | urbp->urb = urb; |
730 | 732 | urb->hcpriv = urbp; |
731 | - | |
733 | + | |
732 | 734 | INIT_LIST_HEAD(&urbp->node); |
733 | 735 | INIT_LIST_HEAD(&urbp->td_list); |
734 | 736 | |
... | ... | @@ -846,7 +848,7 @@ |
846 | 848 | |
847 | 849 | /* Alternate Data0/1 (start with Data1) */ |
848 | 850 | destination ^= TD_TOKEN_TOGGLE; |
849 | - | |
851 | + | |
850 | 852 | uhci_add_td_to_urbp(td, urbp); |
851 | 853 | uhci_fill_td(td, status, destination | uhci_explen(pktsze), |
852 | 854 | data); |
... | ... | @@ -857,7 +859,7 @@ |
857 | 859 | } |
858 | 860 | |
859 | 861 | /* |
860 | - * Build the final TD for control status | |
862 | + * Build the final TD for control status | |
861 | 863 | */ |
862 | 864 | td = uhci_alloc_td(uhci); |
863 | 865 | if (!td) |