Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 271754
b: refs/heads/master
c: 7ed67f1
h: refs/heads/master
v: v3
  • Loading branch information
Hans Verkuil authored and Mauro Carvalho Chehab committed Sep 6, 2011
1 parent 4843940 commit 7113d03
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: db3ca1d5f118ef5ab5717068ee02c1e44e011e64
refs/heads/master: 7ed67f15f4d659b1fd2ad82fdea4746f4a1cdf94
4 changes: 2 additions & 2 deletions trunk/drivers/media/dvb/mantis/hopper_cards.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ static int devs;

static irqreturn_t hopper_irq_handler(int irq, void *dev_id)
{
u32 stat = 0, mask = 0, lstat = 0, mstat = 0;
u32 stat = 0, mask = 0, lstat = 0;
u32 rst_stat = 0, rst_mask = 0;

struct mantis_pci *mantis;
Expand All @@ -80,7 +80,7 @@ static irqreturn_t hopper_irq_handler(int irq, void *dev_id)

stat = mmread(MANTIS_INT_STAT);
mask = mmread(MANTIS_INT_MASK);
mstat = lstat = stat & ~MANTIS_INT_RISCSTAT;
lstat = stat & ~MANTIS_INT_RISCSTAT;
if (!(stat & mask))
return IRQ_NONE;

Expand Down
4 changes: 2 additions & 2 deletions trunk/drivers/media/dvb/mantis/mantis_cards.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ static char *label[10] = {

static irqreturn_t mantis_irq_handler(int irq, void *dev_id)
{
u32 stat = 0, mask = 0, lstat = 0, mstat = 0;
u32 stat = 0, mask = 0, lstat = 0;
u32 rst_stat = 0, rst_mask = 0;

struct mantis_pci *mantis;
Expand All @@ -88,7 +88,7 @@ static irqreturn_t mantis_irq_handler(int irq, void *dev_id)

stat = mmread(MANTIS_INT_STAT);
mask = mmread(MANTIS_INT_MASK);
mstat = lstat = stat & ~MANTIS_INT_RISCSTAT;
lstat = stat & ~MANTIS_INT_RISCSTAT;
if (!(stat & mask))
return IRQ_NONE;

Expand Down

0 comments on commit 7113d03

Please sign in to comment.