summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/cx88/cx88-core.c
diff options
context:
space:
mode:
authorTrent Piepho <xyzzy@speakeasy.org>2007-08-18 02:57:55 -0700
committerTrent Piepho <xyzzy@speakeasy.org>2007-08-18 02:57:55 -0700
commit17436676851595daf49b90f156dc96e5748cb8ce (patch)
treeadb6096b5314abf034b529684d0784d50f51250e /linux/drivers/media/video/cx88/cx88-core.c
parent8fd7ec8843e4d0228a4fa95f4caf2cbdfee9c475 (diff)
downloadmediapointer-dvb-s2-17436676851595daf49b90f156dc96e5748cb8ce.tar.gz
mediapointer-dvb-s2-17436676851595daf49b90f156dc96e5748cb8ce.tar.bz2
cx88: Add symbolic names for the PCI interrupt bits
From: Trent Piepho <xyzzy@speakeasy.org> Used for the PCI_INTMSK and PCI_INT_STAT registers. Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
Diffstat (limited to 'linux/drivers/media/video/cx88/cx88-core.c')
-rw-r--r--linux/drivers/media/video/cx88/cx88-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-core.c b/linux/drivers/media/video/cx88/cx88-core.c
index 130f7aa83..6cf7f2f94 100644
--- a/linux/drivers/media/video/cx88/cx88-core.c
+++ b/linux/drivers/media/video/cx88/cx88-core.c
@@ -520,7 +520,7 @@ int cx88_core_irq(struct cx88_core *core, u32 status)
{
int handled = 0;
- if (status & (1<<18)) {
+ if (status & PCI_INT_IR_SMPINT) {
cx88_ir_irq(core);
handled++;
}