diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-30 12:52:53 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-10-30 12:52:53 -0700 |
commit | c732acd96085347027b11961463a243c568d9aab (patch) | |
tree | 5ce568eb6a31a39dfa5c5af4e10e6270383a07a2 /drivers/pcmcia | |
parent | 1b2d3d94ec878c3529153061cd8cceb876e01a3e (diff) | |
parent | 5cb02ff3489d710c73b4a21bb804feedeacce116 (diff) | |
download | linux-stable-c732acd96085347027b11961463a243c568d9aab.tar.gz linux-stable-c732acd96085347027b11961463a243c568d9aab.tar.bz2 linux-stable-c732acd96085347027b11961463a243c568d9aab.zip |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia-2.6:
fdomain_cs: Sort out modules with duplicate description
pcmcia: Whine harder about use of EXCLUSIVE
pcmcia: IRQ_TYPE_EXCLUSIVE is long obsoleted
Diffstat (limited to 'drivers/pcmcia')
-rw-r--r-- | drivers/pcmcia/pcmcia_resource.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/pcmcia/pcmcia_resource.c b/drivers/pcmcia/pcmcia_resource.c index afea2b2558b5..76d4a98f0955 100644 --- a/drivers/pcmcia/pcmcia_resource.c +++ b/drivers/pcmcia/pcmcia_resource.c @@ -693,8 +693,9 @@ int pcmcia_request_irq(struct pcmcia_device *p_dev, irq_req_t *req) type = 0; if (s->functions > 1) /* All of this ought to be handled higher up */ type = IRQF_SHARED; - if (req->Attributes & IRQ_TYPE_DYNAMIC_SHARING) + else if (req->Attributes & IRQ_TYPE_DYNAMIC_SHARING) type = IRQF_SHARED; + else printk(KERN_WARNING "pcmcia: Driver needs updating to support IRQ sharing.\n"); #ifdef CONFIG_PCMCIA_PROBE |