Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 268385
b: refs/heads/master
c: 18e9351
h: refs/heads/master
i:
  268383: cf90519
v: v3
  • Loading branch information
Yong Zhang authored and Greg Kroah-Hartman committed Sep 16, 2011
1 parent 0a0703d commit b4ed61d
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 14 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: 6f27457b50c0439388e34d528f0fc200ddedb9a4
refs/heads/master: 18e9351e453fbcf445cb8ffdd2e106e0212166da
2 changes: 1 addition & 1 deletion trunk/drivers/staging/cx25821/cx25821-alsa.c
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ static int cx25821_audio_initdev(struct cx25821_dev *dev)
chip->irq = dev->pci->irq;

err = request_irq(dev->pci->irq, cx25821_irq,
IRQF_SHARED | IRQF_DISABLED, chip->dev->name, chip);
IRQF_SHARED, chip->dev->name, chip);

if (err < 0) {
pr_err("ERROR %s: can't get IRQ %d for ALSA\n",
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/cx25821/cx25821-audio-upstream.c
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ int cx25821_start_audio_dma_upstream(struct cx25821_dev *dev,

err =
request_irq(dev->pci->irq, cx25821_upstream_irq_audio,
IRQF_SHARED | IRQF_DISABLED, dev->name, dev);
IRQF_SHARED, dev->name, dev);
if (err < 0) {
pr_err("%s: can't get upstream IRQ %d\n",
dev->name, dev->pci->irq);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/cx25821/cx25821-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1428,7 +1428,7 @@ static int __devinit cx25821_initdev(struct pci_dev *pci_dev,
}

err =
request_irq(pci_dev->irq, cx25821_irq, IRQF_SHARED | IRQF_DISABLED,
request_irq(pci_dev->irq, cx25821_irq, IRQF_SHARED,
dev->name, dev);

if (err < 0) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/cx25821/cx25821-video-upstream-ch2.c
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ int cx25821_start_video_dma_upstream_ch2(struct cx25821_dev *dev,

err =
request_irq(dev->pci->irq, cx25821_upstream_irq_ch2,
IRQF_SHARED | IRQF_DISABLED, dev->name, dev);
IRQF_SHARED, dev->name, dev);
if (err < 0) {
pr_err("%s: can't get upstream IRQ %d\n",
dev->name, dev->pci->irq);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/cx25821/cx25821-video-upstream.c
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ int cx25821_start_video_dma_upstream(struct cx25821_dev *dev,

err =
request_irq(dev->pci->irq, cx25821_upstream_irq,
IRQF_SHARED | IRQF_DISABLED, dev->name, dev);
IRQF_SHARED, dev->name, dev);
if (err < 0) {
pr_err("%s: can't get upstream IRQ %d\n",
dev->name, dev->pci->irq);
Expand Down
6 changes: 0 additions & 6 deletions trunk/drivers/staging/cxt1e1/linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -1017,13 +1017,7 @@ c4_add_dev (hdw_info_t * hi, int brdno, unsigned long f0, unsigned long f1,
**************************************************************/

if (request_irq (irq0, &c4_linux_interrupt,
#if defined(SBE_ISR_TASKLET)
IRQF_DISABLED | IRQF_SHARED,
#elif defined(SBE_ISR_IMMEDIATE)
IRQF_DISABLED | IRQF_SHARED,
#elif defined(SBE_ISR_INLINE)
IRQF_SHARED,
#endif
ndev->name, ndev))
{
pr_warning("%s: MUSYCC could not get irq: %d\n", ndev->name, irq0);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/lirc/lirc_serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ static int init_port(void)
int i, nlow, nhigh, result;

result = request_irq(irq, irq_handler,
IRQF_DISABLED | (share_irq ? IRQF_SHARED : 0),
(share_irq ? IRQF_SHARED : 0),
LIRC_DRIVER_NAME, (void *)&hardware);

switch (result) {
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/staging/lirc/lirc_sir.c
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@ static int init_port(void)
return -EBUSY;
}
#endif
retval = request_irq(irq, sir_interrupt, IRQF_DISABLED,
retval = request_irq(irq, sir_interrupt, 0,
LIRC_DRIVER_NAME, NULL);
if (retval < 0) {
# ifndef LIRC_ON_SA1100
Expand Down

0 comments on commit b4ed61d

Please sign in to comment.