diff options
author | Lin Wang <lin.x.wang@intel.com> | 2015-03-17 12:32:21 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-03-18 11:21:14 -0400 |
commit | e5401bf37a69620bdf079e4ee6c30a268f06f04b (patch) | |
tree | d17949a17d99c022cb88c6602a3146fc9f4076f9 | |
parent | 8f7e9473ab62139c78eb834f53c4ec6bc22d111f (diff) |
xhci: unify cycle state toggling operation with 'XOR'
Some toggling operation in xHCI driver still use conditional toggling:
ring->cycle_state = (ring->cycle_state ? 0 : 1);
Use XOR to invert the cycle state instead of a conditional toggle to unify
cycle state toggling operation in xHCI driver.
Signed-off-by: Lin Wang <lin.x.wang@intel.com>
Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/host/xhci-ring.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c index 5fb66db89e05..da2ff5097fcf 100644 --- a/drivers/usb/host/xhci-ring.c +++ b/drivers/usb/host/xhci-ring.c | |||
@@ -238,7 +238,7 @@ static void inc_enq(struct xhci_hcd *xhci, struct xhci_ring *ring, | |||
238 | 238 | ||
239 | /* Toggle the cycle bit after the last ring segment. */ | 239 | /* Toggle the cycle bit after the last ring segment. */ |
240 | if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) { | 240 | if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) { |
241 | ring->cycle_state = (ring->cycle_state ? 0 : 1); | 241 | ring->cycle_state ^= 1; |
242 | } | 242 | } |
243 | } | 243 | } |
244 | ring->enq_seg = ring->enq_seg->next; | 244 | ring->enq_seg = ring->enq_seg->next; |
@@ -2809,7 +2809,7 @@ static int prepare_ring(struct xhci_hcd *xhci, struct xhci_ring *ep_ring, | |||
2809 | 2809 | ||
2810 | /* Toggle the cycle bit after the last ring segment. */ | 2810 | /* Toggle the cycle bit after the last ring segment. */ |
2811 | if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) { | 2811 | if (last_trb_on_last_seg(xhci, ring, ring->enq_seg, next)) { |
2812 | ring->cycle_state = (ring->cycle_state ? 0 : 1); | 2812 | ring->cycle_state ^= 1; |
2813 | } | 2813 | } |
2814 | ring->enq_seg = ring->enq_seg->next; | 2814 | ring->enq_seg = ring->enq_seg->next; |
2815 | ring->enqueue = ring->enq_seg->trbs; | 2815 | ring->enqueue = ring->enq_seg->trbs; |