mirror of https://gitee.com/openkylin/linux.git
staging/ft1000: remove all spaces, tabs issue in while loop of ft1000_interrupt
all spaces in the main while loop of ft1000_interrupt are converted to tabs. Signed-off-by: Devendra Naga <devendra.aaru@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
69a7cd7dd5
commit
80145a579f
|
@ -2008,10 +2008,12 @@ static irqreturn_t ft1000_interrupt(int irq, void *dev_id)
|
|||
// Check if we have packets in the Downlink FIFO
|
||||
if (info->AsicID == ELECTRABUZZ_ID) {
|
||||
tempword =
|
||||
ft1000_read_reg(dev, FT1000_REG_DFIFO_STAT);
|
||||
ft1000_read_reg(dev,
|
||||
FT1000_REG_DFIFO_STAT);
|
||||
} else {
|
||||
tempword =
|
||||
ft1000_read_reg(dev, FT1000_REG_MAG_DFSR);
|
||||
ft1000_read_reg(dev,
|
||||
FT1000_REG_MAG_DFSR);
|
||||
}
|
||||
if (tempword & 0x1f) {
|
||||
ft1000_copy_up_pkt(dev);
|
||||
|
|
Loading…
Reference in New Issue