Searched refs:wrd (Results 1 – 4 of 4) sorted by relevance
/linux-2.4.37.9/drivers/net/ |
D | de620.c | 961 unsigned short wrd; in read_eeprom() local 964 wrd = ReadAWord(dev, 0x1aa); /* bytes 0 + 1 of NodeID */ in read_eeprom() 965 if (!clone && (wrd != htons(0x0080))) /* Valid D-Link ether sequence? */ in read_eeprom() 967 nic_data.NodeID[0] = wrd & 0xff; in read_eeprom() 968 nic_data.NodeID[1] = wrd >> 8; in read_eeprom() 970 wrd = ReadAWord(dev, 0x1ab); /* bytes 2 + 3 of NodeID */ in read_eeprom() 971 if (!clone && ((wrd & 0xff) != 0xc8)) /* Valid D-Link ether sequence? */ in read_eeprom() 973 nic_data.NodeID[2] = wrd & 0xff; in read_eeprom() 974 nic_data.NodeID[3] = wrd >> 8; in read_eeprom() 976 wrd = ReadAWord(dev, 0x1ac); /* bytes 4 + 5 of NodeID */ in read_eeprom() [all …]
|
D | 3c503.c | 437 unsigned short int *wrd; in el2_block_output() local 474 wrd = (unsigned short int *) buf; in el2_block_output() 490 outsw(E33G_FIFOH, wrd, WRD_COUNT); in el2_block_output() 491 wrd += WRD_COUNT; in el2_block_output() 496 outsw(E33G_FIFOH, wrd, count); in el2_block_output()
|
/linux-2.4.37.9/drivers/char/ |
D | isicom.c | 373 short txcount, wait, wrd, residue, word_count, cnt; in isicom_tx() local 434 wrd = 0; in isicom_tx() 440 wrd |= (port->xmit_buf[port->xmit_tail] << 8); in isicom_tx() 445 outw(wrd, base); in isicom_tx() 448 outw(wrd, base); in isicom_tx() 461 wrd = port->xmit_buf[port->xmit_tail]; in isicom_tx()
|
/linux-2.4.37.9/drivers/net/hamradio/ |
D | yam.c | 341 static int fpga_write(int iobase, unsigned char wrd) in fpga_write() argument 348 bit = (wrd & 0x80) ? (MCR_RTS | MCR_DTR) : MCR_DTR; in fpga_write() 350 wrd <<= 1; in fpga_write()
|