net: ethernet: ti: davinci_cpdma: correct check on NULL in set rate
Check "ch" on NULL first, then get ctlr. Signed-off-by: Ivan Khoronzhuk <ivan.khoronzhuk@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e3e37e7017
commit
e33c2ef106
1 changed files with 2 additions and 1 deletions
|
@ -835,8 +835,8 @@ EXPORT_SYMBOL_GPL(cpdma_chan_get_min_rate);
|
|||
*/
|
||||
int cpdma_chan_set_rate(struct cpdma_chan *ch, u32 rate)
|
||||
{
|
||||
struct cpdma_ctlr *ctlr = ch->ctlr;
|
||||
unsigned long flags, ch_flags;
|
||||
struct cpdma_ctlr *ctlr;
|
||||
int ret, prio_mode;
|
||||
u32 rmask;
|
||||
|
||||
|
@ -846,6 +846,7 @@ int cpdma_chan_set_rate(struct cpdma_chan *ch, u32 rate)
|
|||
if (ch->rate == rate)
|
||||
return rate;
|
||||
|
||||
ctlr = ch->ctlr;
|
||||
spin_lock_irqsave(&ctlr->lock, flags);
|
||||
spin_lock_irqsave(&ch->lock, ch_flags);
|
||||
|
||||
|
|
Loading…
Reference in a new issue