patch-2.4.9 linux/drivers/isdn/eicon/common.c
Next file: linux/drivers/isdn/eicon/eicon_mod.c
Previous file: linux/drivers/isdn/divert/divert_procfs.c
Back to the patch index
Back to the overall index
- Lines: 74
- Date:
Sun Aug 12 17:37:53 2001
- Orig file:
v2.4.8/linux/drivers/isdn/eicon/common.c
- Orig date:
Tue Jul 3 17:08:19 2001
diff -u --recursive --new-file v2.4.8/linux/drivers/isdn/eicon/common.c linux/drivers/isdn/eicon/common.c
@@ -37,9 +37,6 @@
#define DIVAS_IRQ_RESET 0xC18
#define DIVAS_IRQ_RESET_VAL 0xFE
-#define PCI_LATENCY PCI_LATENCY_TIMER
-#define PCI_INTERRUPT PCI_INTERRUPT_LINE
-
#define TEST_INT_DIVAS 0x11
#define TEST_INT_DIVAS_BRI 0x12
#define TEST_INT_DIVAS_Q 0x13
@@ -78,7 +75,7 @@
void DIVA_DIDD_Read( DESCRIPTOR *table, int tablelength )
{
- bzero(table, tablelength);
+ memset(table, 0, tablelength);
if (tablelength > sizeof(DIDD_Table))
tablelength = sizeof(DIDD_Table);
@@ -89,7 +86,7 @@
}
if (tablelength > 0)
- bcopy((void *)DIDD_Table, (void *)table, tablelength);
+ memcpy((void *)table, (void *)DIDD_Table, tablelength);
return;
}
@@ -99,7 +96,7 @@
if (tablelength > sizeof(DIDD_Table))
tablelength = sizeof(DIDD_Table);
- bcopy((void *)table, (void *)DIDD_Table, tablelength);
+ memcpy((void *)DIDD_Table, (void *)table, tablelength);
return;
}
@@ -109,7 +106,7 @@
{
DESCRIPTOR d[32];
- bzero(d, sizeof(d));
+ memset(d, 0, sizeof(d));
d[0].type = IDI_DIMAINT; /* identify the DIMAINT entry */
d[0].channels = 0; /* zero channels associated with dimaint*/
@@ -478,7 +475,6 @@
int DivasCardNew(dia_card_t *card_info)
{
card_t *card;
- byte b;
static boolean_t first_call = TRUE;
boolean_t NeedISRandReset = FALSE;
@@ -567,10 +563,6 @@
return -1;
}
- b = card->cfg.irq;
-
- UxPciConfigWrite(card->hw, sizeof(b), PCI_INTERRUPT_LINE, &b);
-
if (card_info->card_type != DIA_CARD_TYPE_DIVA_SERVER_Q)
{
if ((*card->card_reset)(card))
@@ -670,7 +662,7 @@
return -1;
}
- bzero(card->e_tbl, sizeof(E_INFO) * num_entities);
+ memset(card->e_tbl, 0, sizeof(E_INFO) * num_entities);
card->e_max = num_entities;
DIVA_DIDD_Read(d, sizeof(d));
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)