Commit 1b61625f authored by Felipe Balbi's avatar Felipe Balbi

usb: musb: cppi41: decrease indentation level

no functional changes, clean up only.
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent ccf5fb69
...@@ -225,10 +225,12 @@ static void cppi41_dma_callback(void *private_data) ...@@ -225,10 +225,12 @@ static void cppi41_dma_callback(void *private_data)
struct dma_channel *channel = private_data; struct dma_channel *channel = private_data;
struct cppi41_dma_channel *cppi41_channel = channel->private_data; struct cppi41_dma_channel *cppi41_channel = channel->private_data;
struct musb_hw_ep *hw_ep = cppi41_channel->hw_ep; struct musb_hw_ep *hw_ep = cppi41_channel->hw_ep;
struct cppi41_dma_controller *controller;
struct musb *musb = hw_ep->musb; struct musb *musb = hw_ep->musb;
unsigned long flags; unsigned long flags;
struct dma_tx_state txstate; struct dma_tx_state txstate;
u32 transferred; u32 transferred;
int is_hs = 0;
bool empty; bool empty;
spin_lock_irqsave(&musb->lock, flags); spin_lock_irqsave(&musb->lock, flags);
...@@ -251,9 +253,9 @@ static void cppi41_dma_callback(void *private_data) ...@@ -251,9 +253,9 @@ static void cppi41_dma_callback(void *private_data)
empty = musb_is_tx_fifo_empty(hw_ep); empty = musb_is_tx_fifo_empty(hw_ep);
if (empty) { if (empty) {
cppi41_trans_done(cppi41_channel); cppi41_trans_done(cppi41_channel);
} else { goto out;
struct cppi41_dma_controller *controller; }
int is_hs = 0;
/* /*
* On AM335x it has been observed that the TX interrupt fires * On AM335x it has been observed that the TX interrupt fires
* too early that means the TXFIFO is not yet empty but the DMA * too early that means the TXFIFO is not yet empty but the DMA
...@@ -302,7 +304,7 @@ static void cppi41_dma_callback(void *private_data) ...@@ -302,7 +304,7 @@ static void cppi41_dma_callback(void *private_data)
20 * NSEC_PER_USEC, 20 * NSEC_PER_USEC,
HRTIMER_MODE_REL); HRTIMER_MODE_REL);
} }
}
out: out:
spin_unlock_irqrestore(&musb->lock, flags); spin_unlock_irqrestore(&musb->lock, flags);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment