/kernel/linux/linux-5.10/drivers/pcmcia/ |
H A D | max1600.c | 68 int max1600_configure(struct max1600 *m, unsigned int vcc, unsigned int vpp) in max1600_configure() argument 74 if (vpp == 0) { in max1600_configure() 77 } else if (vpp == 120) { in max1600_configure() 80 } else if (vpp == vcc) { in max1600_configure() 85 vpp / 10, vpp % 10); in max1600_configure() 89 } else if (vpp != vcc && vpp != 0) { in max1600_configure()
|
H A D | max1600.h | 30 int max1600_configure(struct max1600 *, unsigned int vcc, unsigned int vpp);
|
H A D | pcmcia_cis.c | 184 p_dev->vpp = cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000; in pcmcia_do_loop_config() 186 p_dev->vpp = in pcmcia_do_loop_config()
|
/kernel/linux/linux-6.6/drivers/pcmcia/ |
H A D | max1600.c | 68 int max1600_configure(struct max1600 *m, unsigned int vcc, unsigned int vpp) in max1600_configure() argument 74 if (vpp == 0) { in max1600_configure() 77 } else if (vpp == 120) { in max1600_configure() 80 } else if (vpp == vcc) { in max1600_configure() 85 vpp / 10, vpp % 10); in max1600_configure() 89 } else if (vpp != vcc && vpp != 0) { in max1600_configure()
|
H A D | max1600.h | 30 int max1600_configure(struct max1600 *, unsigned int vcc, unsigned int vpp);
|
H A D | pcmcia_cis.c | 185 p_dev->vpp = cfg->vpp1.param[CISTPL_POWER_VNOM] / 10000; in pcmcia_do_loop_config() 187 p_dev->vpp = in pcmcia_do_loop_config()
|
/kernel/linux/linux-5.10/arch/arm/mach-s3c/ |
H A D | simtec-nor.c | 29 static void simtec_nor_vpp(struct platform_device *pdev, int vpp) in simtec_nor_vpp() argument 35 printk(KERN_DEBUG "%s(%d)\n", __func__, vpp); in simtec_nor_vpp() 37 if (vpp) in simtec_nor_vpp()
|
/kernel/linux/linux-5.10/drivers/mtd/maps/ |
H A D | pcmciamtd.c | 38 int vpp; member 55 static int vpp; variable 74 module_param(vpp, int, 0); 75 MODULE_PARM_DESC(vpp, "Vpp value in 1/10ths eg 33=3.3V 120=12V (Dangerous)"); 304 pr_debug("dev = %p on = %d vpp = %d\n\n", dev, on, dev->vpp); in pcmciamtd_set_vpp() 308 pcmcia_fixup_vpp(link, dev->vpp); in pcmciamtd_set_vpp() 548 dev->vpp = (vpp) ? vpp in pcmciamtd_config() [all...] |
H A D | pismo.c | 45 void (*vpp)(void *, int); member 55 pismo->vpp(pismo->vpp_data, on); in pismo_set_vpp() 137 if (pismo->vpp) in pismo_add_nor() 230 pismo->vpp = pdata->set_vpp; in pismo_probe()
|
H A D | l440gx.c | 30 /* Is this really the vpp port? */ 33 static void l440gx_set_vpp(struct map_info *map, int vpp) in l440gx_set_vpp() argument 38 if (vpp) { in l440gx_set_vpp() 55 * appripriate code for vpp enable/disable
|
/kernel/linux/linux-6.6/drivers/mtd/maps/ |
H A D | pcmciamtd.c | 38 int vpp; member 55 static int vpp; variable 74 module_param(vpp, int, 0); 75 MODULE_PARM_DESC(vpp, "Vpp value in 1/10ths eg 33=3.3V 120=12V (Dangerous)"); 304 pr_debug("dev = %p on = %d vpp = %d\n\n", dev, on, dev->vpp); in pcmciamtd_set_vpp() 308 pcmcia_fixup_vpp(link, dev->vpp); in pcmciamtd_set_vpp() 548 dev->vpp = (vpp) ? vpp in pcmciamtd_config() [all...] |
H A D | pismo.c | 45 void (*vpp)(void *, int); member 55 pismo->vpp(pismo->vpp_data, on); in pismo_set_vpp() 137 if (pismo->vpp) in pismo_add_nor() 227 pismo->vpp = pdata->set_vpp; in pismo_probe()
|
H A D | l440gx.c | 30 /* Is this really the vpp port? */ 33 static void l440gx_set_vpp(struct map_info *map, int vpp) in l440gx_set_vpp() argument 38 if (vpp) { in l440gx_set_vpp() 55 * appripriate code for vpp enable/disable
|
/kernel/liteos_a/fs/fat/os_adapt/ |
H A D | fatfs.h | 119 int fatfs_lookup(struct Vnode *parent, const char *name, int len, struct Vnode **vpp); 120 int fatfs_create(struct Vnode *parent, const char *name, int mode, struct Vnode **vpp); 141 int fatfs_mkdir(struct Vnode *parent, const char *name, mode_t mode, struct Vnode **vpp);
|
/kernel/liteos_a/fs/proc/os_adapt/ |
H A D | proc_vfs.c | 162 int VfsProcfsLookup(struct Vnode *parent, const char *name, int len, struct Vnode **vpp) in VfsProcfsLookup() argument 164 if (parent == NULL || name == NULL || len <= 0 || vpp == NULL) { in VfsProcfsLookup() 183 *vpp = EntryToVnode(entry); in VfsProcfsLookup() 184 if ((*vpp) == NULL) { in VfsProcfsLookup() 187 (*vpp)->originMount = parent->originMount; in VfsProcfsLookup() 188 (*vpp)->parent = parent; in VfsProcfsLookup()
|
/kernel/linux/linux-5.10/arch/arm/mach-sa1100/ |
H A D | h3xxx.c | 45 static void h3xxx_set_vpp(int vpp) in h3xxx_set_vpp() argument 47 gpio_set_value(H3XXX_EGPIO_VPP_ON, vpp); in h3xxx_set_vpp()
|
H A D | jornada720.c | 341 static void jornada720_set_vpp(int vpp) in jornada720_set_vpp() argument 343 if (vpp) in jornada720_set_vpp()
|
H A D | collie.c | 323 static void collie_set_vpp(int vpp) in collie_set_vpp() argument 325 gpio_set_value(COLLIE_GPIO_VPEN, vpp); in collie_set_vpp()
|
/kernel/linux/linux-6.6/arch/arm/mach-sa1100/ |
H A D | h3xxx.c | 45 static void h3xxx_set_vpp(int vpp) in h3xxx_set_vpp() argument 47 gpio_set_value(H3XXX_EGPIO_VPP_ON, vpp); in h3xxx_set_vpp()
|
H A D | jornada720.c | 341 static void jornada720_set_vpp(int vpp) in jornada720_set_vpp() argument 343 if (vpp) in jornada720_set_vpp()
|
H A D | collie.c | 305 static void collie_set_vpp(int vpp) in collie_set_vpp() argument 307 gpio_set_value(COLLIE_GPIO_VPEN, vpp); in collie_set_vpp()
|
/kernel/linux/linux-6.6/include/pcmcia/ |
H A D | soc_common.h | 69 struct soc_pcmcia_regulator vpp; member
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | fsl_devices.h | 142 int(*voltage_set)(int slot, int vcc, int vpp);
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | fsl_devices.h | 142 int(*voltage_set)(int slot, int vcc, int vpp);
|
/kernel/linux/linux-5.10/drivers/ide/ |
H A D | ide-cs.c | 241 link->vpp / 10, link->vpp % 10); in ide_config()
|