wcte12xp, wctdm24xxp: Remove redundant vb_enable_io_access.

These three bits are already set by 'pci_enable_device' and
'pci_set_master' calls.

Signed-off-by: Shaun Ruffell <sruffell@digium.com>

Origin: http://svnview.digium.com/svn/dahdi?view=rev&rev=9325

git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/branches/2.4@9660 a0bf4364-ded3-4de4-8d8a-66a801d63aff
This commit is contained in:
Shaun Ruffell
2011-01-21 05:28:13 +00:00
parent b77bc833bc
commit dd61a7c70f

View File

@@ -629,19 +629,6 @@ vb_setsdi(struct voicebus *vb, int addr, u16 val)
spin_unlock_irqrestore(&vb->lock, flags);
}
static void
vb_enable_io_access(struct voicebus *vb)
{
u32 reg;
unsigned long flags;
BUG_ON(!vb->pdev);
spin_lock_irqsave(&vb->lock, flags);
pci_read_config_dword(vb->pdev, 0x0004, &reg);
reg |= 0x00000007;
pci_write_config_dword(vb->pdev, 0x0004, reg);
spin_unlock_irqrestore(&vb->lock, flags);
}
/*! \brief Resets the voicebus hardware interface. */
static int
vb_reset_interface(struct voicebus *vb)
@@ -1799,7 +1786,6 @@ __voicebus_init(struct voicebus *vb, const char *board_name,
}
pci_set_master(vb->pdev);
vb_enable_io_access(vb);
if (vb_reset_interface(vb)) {
retval = -EIO;