wct4xxp: Trivial formatting changes around request_irq.
Quiet some checkpatch warnings introduced by the last patch. I kept this separate since it may have obscured the real change made in the previous commit if combined. Signed-off-by: Shaun Ruffell <sruffell@digium.com> Origin: http://svnview.digium.com/svn/dahdi?view=rev&rev=10590 git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/branches/2.6@10594 a0bf4364-ded3-4de4-8d8a-66a801d63aff
This commit is contained in:
parent
fa86c13c3b
commit
848d5ae115
@ -5236,18 +5236,19 @@ t4_init_one(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
(wc->numspans == 8) ? "wct8xxp" :
|
||||
(wc->numspans == 2) ? "wct2xxp" :
|
||||
"wct4xxp",
|
||||
wc))
|
||||
wc)) {
|
||||
#else
|
||||
if (!(wc->tspans[0]->spanflags & FLAG_2NDGEN)) {
|
||||
dev_notice(&wc->dev->dev, "This driver does not "
|
||||
"support 1st gen modules\n");
|
||||
free_wc(wc);
|
||||
return -ENODEV;
|
||||
}
|
||||
if (request_irq(pdev->irq, t4_interrupt_gen2, DAHDI_IRQ_SHARED, "t4xxp", wc))
|
||||
if (!(wc->tspans[0]->spanflags & FLAG_2NDGEN)) {
|
||||
dev_notice(&wc->dev->dev, "This driver does not "
|
||||
"support 1st gen modules\n");
|
||||
free_wc(wc);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
if (request_irq(pdev->irq, t4_interrupt_gen2,
|
||||
DAHDI_IRQ_SHARED, "t4xxp", wc)) {
|
||||
#endif
|
||||
{
|
||||
dev_notice(&wc->dev->dev, "t4xxp: Unable to request IRQ %d\n",
|
||||
dev_notice(&wc->dev->dev, "Unable to request IRQ %d\n",
|
||||
pdev->irq);
|
||||
free_wc(wc);
|
||||
return -EIO;
|
||||
|
Loading…
Reference in New Issue
Block a user