| /linux/drivers/net/ethernet/realtek/ |
| H A D | atp.h | 161 unsigned char outval; in write_reg() local 164 outval = WrAddr | reg; in write_reg() 165 outb(outval, port + PAR_DATA); in write_reg() 166 outb(outval, port + PAR_DATA); /* Double write for PS/2. */ in write_reg() 168 outval &= 0xf0; in write_reg() 169 outval |= value; in write_reg() 170 outb(outval, port + PAR_DATA); in write_reg() 171 outval &= 0x1f; in write_reg() 172 outb(outval, port + PAR_DATA); in write_reg() 173 outb(outval, port + PAR_DATA); in write_reg() [all …]
|
| H A D | atp.c | 408 char outval = (cmd & (1<<num_bits)) ? EE_DATA_WRITE : 0; in eeprom_op() local 409 write_reg_high(ioaddr, PROM_CMD, outval | EE_CLK_LOW); in eeprom_op() 410 write_reg_high(ioaddr, PROM_CMD, outval | EE_CLK_HIGH); in eeprom_op()
|
| /linux/drivers/media/radio/ |
| H A D | radio-typhoon.c | 85 unsigned long outval; in typhoon_s_frequency() local 100 outval = (x * x + 2500) / 5000; in typhoon_s_frequency() 101 outval = (outval * x + 5000) / 10000; in typhoon_s_frequency() 102 outval -= (10 * x * x + 10433) / 20866; in typhoon_s_frequency() 103 outval += 4 * x - 11505; in typhoon_s_frequency() 105 outb_p((outval >> 8) & 0x01, isa->io + 4); in typhoon_s_frequency() 106 outb_p(outval >> 9, isa->io + 6); in typhoon_s_frequency() 107 outb_p(outval & 0xff, isa->io + 8); in typhoon_s_frequency()
|
| /linux/drivers/pci/controller/ |
| H A D | pci-ftpci100.c | 125 u32 outval; in faraday_res_to_memcfg() local 129 outval = FARADAY_PCI_MEMSIZE_1MB; in faraday_res_to_memcfg() 132 outval = FARADAY_PCI_MEMSIZE_2MB; in faraday_res_to_memcfg() 135 outval = FARADAY_PCI_MEMSIZE_4MB; in faraday_res_to_memcfg() 138 outval = FARADAY_PCI_MEMSIZE_8MB; in faraday_res_to_memcfg() 141 outval = FARADAY_PCI_MEMSIZE_16MB; in faraday_res_to_memcfg() 144 outval = FARADAY_PCI_MEMSIZE_32MB; in faraday_res_to_memcfg() 147 outval = FARADAY_PCI_MEMSIZE_64MB; in faraday_res_to_memcfg() 150 outval = FARADAY_PCI_MEMSIZE_128MB; in faraday_res_to_memcfg() 153 outval = FARADAY_PCI_MEMSIZE_256MB; in faraday_res_to_memcfg() [all …]
|
| /linux/drivers/char/ipmi/ |
| H A D | ipmi_watchdog.c | 202 typedef int (*action_fn)(const char *intval, char *outval); 204 static int action_op(const char *inval, char *outval); 205 static int preaction_op(const char *inval, char *outval); 206 static int preop_op(const char *inval, char *outval); 1164 static int action_op(const char *inval, char *outval) in action_op() argument 1168 if (outval) in action_op() 1169 strcpy(outval, action); in action_op() 1196 static int preaction_op(const char *inval, char *outval) in preaction_op() argument 1200 if (outval) in preaction_op() 1201 strcpy(outval, preaction); in preaction_op() [all …]
|
| /linux/drivers/gpio/ |
| H A D | gpio-viperboard.c | 50 u8 outval; member 102 gamsg->outval = 0x00; in vprbrd_gpioa_get() 156 gamsg->outval = value; in vprbrd_gpioa_set() 196 gamsg->outval = 0x00; in vprbrd_gpioa_direction_input() 237 gamsg->outval = value; in vprbrd_gpioa_direction_output()
|
| /linux/crypto/ |
| H A D | df_sp80090a.c | 27 unsigned char *outval, in drbg_kcapi_sym() argument 32 aes_encrypt(aesctx, outval, in->buf); in drbg_kcapi_sym()
|
| H A D | drbg.c | 411 static int drbg_kcapi_hash(struct drbg_state *drbg, unsigned char *outval, 595 unsigned char *outval, size_t outlen, in drbg_hash_df() argument 623 memcpy(outval + len, tmp, blocklen); in drbg_hash_df() 1492 static int drbg_kcapi_hash(struct drbg_state *drbg, unsigned char *outval, in drbg_kcapi_hash() argument 1501 return crypto_shash_final(&sdesc->shash, outval); in drbg_kcapi_hash()
|
| /linux/drivers/crypto/intel/qat/qat_common/ |
| H A D | qat_uclo.c | 132 unsigned int outval; in qat_uclo_wr_sram_by_words() local 136 memcpy(&outval, ptr, 4); in qat_uclo_wr_sram_by_words() 137 SRAM_WRITE(handle, addr, outval); in qat_uclo_wr_sram_by_words() 149 unsigned int outval; in qat_uclo_wr_umem_by_words() local 155 memcpy(&outval, ptr, 4); in qat_uclo_wr_umem_by_words() 156 qat_hal_wr_umem(handle, ae, addr++, 1, &outval); in qat_uclo_wr_umem_by_words()
|