Home
last modified time | relevance | path

Searched refs:cdevs (Results 1 – 25 of 32) sorted by relevance

12

/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/clk/davinci/
H A Dpsc.c465 const struct davinci_lpsc_clkdev_info *cdevs = info->cdevs; in davinci_psc_register_clocks() local
468 if (!cdevs || IS_ERR_OR_NULL(clk)) in davinci_psc_register_clocks()
471 for (; cdevs->con_id || cdevs->dev_id; cdevs++) in davinci_psc_register_clocks()
472 clk_register_clkdev(clk, cdevs->con_id, cdevs->dev_id); in davinci_psc_register_clocks()
H A Dpsc.h63 const struct davinci_lpsc_clkdev_info *cdevs; member
73 .cdevs = (c), \
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/clk/davinci/
H A Dpsc.c465 const struct davinci_lpsc_clkdev_info *cdevs = info->cdevs; in davinci_psc_register_clocks() local
468 if (!cdevs || IS_ERR_OR_NULL(clk)) in davinci_psc_register_clocks()
471 for (; cdevs->con_id || cdevs->dev_id; cdevs++) in davinci_psc_register_clocks()
472 clk_register_clkdev(clk, cdevs->con_id, cdevs->dev_id); in davinci_psc_register_clocks()
H A Dpsc.h63 const struct davinci_lpsc_clkdev_info *cdevs; member
73 .cdevs = (c), \
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/clk/davinci/
H A Dpsc.c465 const struct davinci_lpsc_clkdev_info *cdevs = info->cdevs; in davinci_psc_register_clocks() local
468 if (!cdevs || IS_ERR_OR_NULL(clk)) in davinci_psc_register_clocks()
471 for (; cdevs->con_id || cdevs->dev_id; cdevs++) in davinci_psc_register_clocks()
472 clk_register_clkdev(clk, cdevs->con_id, cdevs->dev_id); in davinci_psc_register_clocks()
H A Dpsc.h63 const struct davinci_lpsc_clkdev_info *cdevs; member
73 .cdevs = (c), \
/dports/devel/p5-Paranoid/Paranoid-2.08/lib/Paranoid/
H A DGlob.pm381 my @cdevs = grep { -c $_ } $self->exists;
383 pdebug( 'leaving w/rv: %s', PDLEVEL1, @cdevs );
385 return @cdevs;
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/net/ethernet/mellanox/mlxsw/
H A Dcore_thermal.c100 struct thermal_cooling_device *cdevs[MLXSW_MFCR_PWMS_MAX]; member
129 if (thermal->cdevs[i] == cdev) in mlxsw_get_cooling_device_idx()
960 thermal->cdevs[i] = cdev; in mlxsw_thermal_init()
1012 if (thermal->cdevs[i]) in mlxsw_thermal_init()
1013 thermal_cooling_device_unregister(thermal->cdevs[i]); in mlxsw_thermal_init()
1031 if (thermal->cdevs[i]) { in mlxsw_thermal_fini()
1032 thermal_cooling_device_unregister(thermal->cdevs[i]); in mlxsw_thermal_fini()
1033 thermal->cdevs[i] = NULL; in mlxsw_thermal_fini()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/net/ethernet/mellanox/mlxsw/
H A Dcore_thermal.c100 struct thermal_cooling_device *cdevs[MLXSW_MFCR_PWMS_MAX]; member
129 if (thermal->cdevs[i] == cdev) in mlxsw_get_cooling_device_idx()
960 thermal->cdevs[i] = cdev; in mlxsw_thermal_init()
1012 if (thermal->cdevs[i]) in mlxsw_thermal_init()
1013 thermal_cooling_device_unregister(thermal->cdevs[i]); in mlxsw_thermal_init()
1031 if (thermal->cdevs[i]) { in mlxsw_thermal_fini()
1032 thermal_cooling_device_unregister(thermal->cdevs[i]); in mlxsw_thermal_fini()
1033 thermal->cdevs[i] = NULL; in mlxsw_thermal_fini()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/net/ethernet/mellanox/mlxsw/
H A Dcore_thermal.c100 struct thermal_cooling_device *cdevs[MLXSW_MFCR_PWMS_MAX]; member
129 if (thermal->cdevs[i] == cdev) in mlxsw_get_cooling_device_idx()
960 thermal->cdevs[i] = cdev; in mlxsw_thermal_init()
1012 if (thermal->cdevs[i]) in mlxsw_thermal_init()
1013 thermal_cooling_device_unregister(thermal->cdevs[i]); in mlxsw_thermal_init()
1031 if (thermal->cdevs[i]) { in mlxsw_thermal_fini()
1032 thermal_cooling_device_unregister(thermal->cdevs[i]); in mlxsw_thermal_fini()
1033 thermal->cdevs[i] = NULL; in mlxsw_thermal_fini()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/tty/
H A Dtty_io.c3186 driver->cdevs[index] = cdev_alloc(); in tty_cdev_add()
3187 if (!driver->cdevs[index]) in tty_cdev_add()
3335 cdev_del(driver->cdevs[index]); in tty_unregister_device()
3336 driver->cdevs[index] = NULL; in tty_unregister_device()
3354 unsigned int cdevs = 1; in __tty_alloc_driver() local
3388 cdevs = lines; in __tty_alloc_driver()
3391 driver->cdevs = kcalloc(cdevs, sizeof(*driver->cdevs), GFP_KERNEL); in __tty_alloc_driver()
3392 if (!driver->cdevs) { in __tty_alloc_driver()
3402 kfree(driver->cdevs); in __tty_alloc_driver()
3426 cdev_del(driver->cdevs[0]); in destruct_tty_driver()
[all …]
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/tty/
H A Dtty_io.c3186 driver->cdevs[index] = cdev_alloc(); in tty_cdev_add()
3187 if (!driver->cdevs[index]) in tty_cdev_add()
3335 cdev_del(driver->cdevs[index]); in tty_unregister_device()
3336 driver->cdevs[index] = NULL; in tty_unregister_device()
3354 unsigned int cdevs = 1; in __tty_alloc_driver() local
3388 cdevs = lines; in __tty_alloc_driver()
3391 driver->cdevs = kcalloc(cdevs, sizeof(*driver->cdevs), GFP_KERNEL); in __tty_alloc_driver()
3392 if (!driver->cdevs) { in __tty_alloc_driver()
3402 kfree(driver->cdevs); in __tty_alloc_driver()
3426 cdev_del(driver->cdevs[0]); in destruct_tty_driver()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/tty/
H A Dtty_io.c3186 driver->cdevs[index] = cdev_alloc(); in tty_cdev_add()
3187 if (!driver->cdevs[index]) in tty_cdev_add()
3335 cdev_del(driver->cdevs[index]); in tty_unregister_device()
3336 driver->cdevs[index] = NULL; in tty_unregister_device()
3354 unsigned int cdevs = 1; in __tty_alloc_driver() local
3388 cdevs = lines; in __tty_alloc_driver()
3391 driver->cdevs = kcalloc(cdevs, sizeof(*driver->cdevs), GFP_KERNEL); in __tty_alloc_driver()
3392 if (!driver->cdevs) { in __tty_alloc_driver()
3402 kfree(driver->cdevs); in __tty_alloc_driver()
3426 cdev_del(driver->cdevs[0]); in destruct_tty_driver()
[all …]
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/char/tpm/
H A Dtpm-chip.c385 cdev_init(&chip->cdevs, &tpmrm_fops); in tpm_chip_alloc()
387 chip->cdevs.owner = THIS_MODULE; in tpm_chip_alloc()
448 rc = cdev_device_add(&chip->cdevs, &chip->devs); in tpm_add_char_device()
644 cdev_device_del(&chip->cdevs, &chip->devs); in tpm_chip_unregister()
H A Dtpmrm-dev.c19 chip = container_of(inode->i_cdev, struct tpm_chip, cdevs); in tpmrm_open()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/char/tpm/
H A Dtpm-chip.c385 cdev_init(&chip->cdevs, &tpmrm_fops); in tpm_chip_alloc()
387 chip->cdevs.owner = THIS_MODULE; in tpm_chip_alloc()
448 rc = cdev_device_add(&chip->cdevs, &chip->devs); in tpm_add_char_device()
644 cdev_device_del(&chip->cdevs, &chip->devs); in tpm_chip_unregister()
H A Dtpmrm-dev.c19 chip = container_of(inode->i_cdev, struct tpm_chip, cdevs); in tpmrm_open()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/char/tpm/
H A Dtpm-chip.c385 cdev_init(&chip->cdevs, &tpmrm_fops); in tpm_chip_alloc()
387 chip->cdevs.owner = THIS_MODULE; in tpm_chip_alloc()
448 rc = cdev_device_add(&chip->cdevs, &chip->devs); in tpm_add_char_device()
644 cdev_device_del(&chip->cdevs, &chip->devs); in tpm_chip_unregister()
H A Dtpmrm-dev.c19 chip = container_of(inode->i_cdev, struct tpm_chip, cdevs); in tpmrm_open()
/dports/comms/lirc/lirc-0.9.0/drivers/lirc_dev/
H A Dlirc_dev.c91 static struct cdev cdevs[MAX_IRCTL_DEVICES]; variable
230 struct cdev *cdev = &cdevs[d->minor]; in lirc_cdev_add()
462 cdev = &cdevs[minor];
553 cdev = &cdevs[iminor(inode)];
593 struct cdev *cdev = &cdevs[iminor(inode)];
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/scsi/
H A Dst.h71 struct cdev *cdevs[2]; /* Auto-rewind and non-rewind devices */ member
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/scsi/
H A Dst.h71 struct cdev *cdevs[2]; /* Auto-rewind and non-rewind devices */ member
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/scsi/
H A Dst.h71 struct cdev *cdevs[2]; /* Auto-rewind and non-rewind devices */ member
/dports/multimedia/libv4l/linux-5.13-rc2/include/linux/
H A Dtty_driver.h296 struct cdev **cdevs; member
/dports/multimedia/v4l_compat/linux-5.13-rc2/include/linux/
H A Dtty_driver.h296 struct cdev **cdevs; member

12