Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 80145a57 authored by Devendra Naga's avatar Devendra Naga Committed by Greg Kroah-Hartman
Browse files

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: default avatarDevendra Naga <devendra.aaru@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 69a7cd7d
Loading
Loading
Loading
Loading
+31 −29
Original line number Diff line number Diff line
@@ -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);