Home
last modified time | relevance | path

Searched refs:outval (Results 1 – 7 of 7) sorted by relevance

/linux-2.4.37.9/drivers/net/
Datp.h155 unsigned char outval; in write_reg() local
157 outval = WrAddr | reg; in write_reg()
158 outb(outval, port + PAR_DATA); in write_reg()
159 outb(outval, port + PAR_DATA); /* Double write for PS/2. */ in write_reg()
161 outval &= 0xf0; in write_reg()
162 outval |= value; in write_reg()
163 outb(outval, port + PAR_DATA); in write_reg()
164 outval &= 0x1f; in write_reg()
165 outb(outval, port + PAR_DATA); in write_reg()
166 outb(outval, port + PAR_DATA); in write_reg()
[all …]
Datp.c412 char outval = test_bit(num_bits, &cmd) ? EE_DATA_WRITE : 0; in eeprom_op() local
413 write_reg_high(ioaddr, PROM_CMD, outval | EE_CLK_LOW); in eeprom_op()
414 write_reg_high(ioaddr, PROM_CMD, outval | EE_CLK_HIGH); in eeprom_op()
Deepro.c1446 short outval = (read_cmd & (1 << i)) ? ctrl_val | EEDI in read_eeprom() local
1448 outb(outval, ee_addr); in read_eeprom()
1449 outb(outval | EESK, ee_addr); /* EEPROM clock tick. */ in read_eeprom()
1451 outb(outval, ee_addr); /* Finish EEPROM a clock tick. */ in read_eeprom()
/linux-2.4.37.9/drivers/media/radio/
Dradio-typhoon.c89 unsigned long outval; in typhoon_setfreq_generic() local
104 outval = (x * x + 2500) / 5000; in typhoon_setfreq_generic()
105 outval = (outval * x + 5000) / 10000; in typhoon_setfreq_generic()
106 outval -= (10 * x * x + 10433) / 20866; in typhoon_setfreq_generic()
107 outval += 4 * x - 11505; in typhoon_setfreq_generic()
109 outb_p((outval >> 8) & 0x01, dev->iobase + 4); in typhoon_setfreq_generic()
110 outb_p(outval >> 9, dev->iobase + 6); in typhoon_setfreq_generic()
111 outb_p(outval & 0xff, dev->iobase + 8); in typhoon_setfreq_generic()
/linux-2.4.37.9/fs/xfs/
Dxfs_fsops.h60 xfs_fsop_resblks_t *outval);
Dxfs_fsops.c512 xfs_fsop_resblks_t *outval) in xfs_reserve_blocks() argument
521 outval->resblks = mp->m_resblks; in xfs_reserve_blocks()
522 outval->resblks_avail = mp->m_resblks_avail; in xfs_reserve_blocks()
556 outval->resblks = mp->m_resblks; in xfs_reserve_blocks()
557 outval->resblks_avail = mp->m_resblks_avail; in xfs_reserve_blocks()
/linux-2.4.37.9/drivers/sound/
Dwavfront.c688 int outval = 0; in demunge_int32() local
691 outval=(outval<<7)+src[i]; in demunge_int32()
694 return outval; in demunge_int32()