/kernel/linux/linux-5.10/drivers/memory/ |
H A D | atmel-ebi.c | 40 void (*get_config)(struct atmel_ebi_dev *ebid, member 354 caps->get_config(ebid, &ebid->configs[i]); in atmel_ebi_dev_setup() 377 .get_config = at91sam9_ebi_get_config, 386 .get_config = at91sam9_ebi_get_config, 395 .get_config = at91sam9_ebi_get_config, 404 .get_config = at91sam9_ebi_get_config, 413 .get_config = at91sam9_ebi_get_config, 422 .get_config = at91sam9_ebi_get_config, 431 .get_config = at91sam9_ebi_get_config, 438 .get_config [all...] |
/kernel/linux/linux-6.6/drivers/memory/ |
H A D | atmel-ebi.c | 40 void (*get_config)(struct atmel_ebi_dev *ebid, member 354 caps->get_config(ebid, &ebid->configs[i]); in atmel_ebi_dev_setup() 377 .get_config = at91sam9_ebi_get_config, 386 .get_config = at91sam9_ebi_get_config, 395 .get_config = at91sam9_ebi_get_config, 404 .get_config = at91sam9_ebi_get_config, 413 .get_config = at91sam9_ebi_get_config, 422 .get_config = at91sam9_ebi_get_config, 431 .get_config = at91sam9_ebi_get_config, 438 .get_config [all...] |
/kernel/linux/linux-5.10/arch/arm/mach-s3c/ |
H A D | gpio-samsung.c | 361 if (!chipcfg->get_config) in samsung_gpiolib_set_cfg() 362 chipcfg->get_config = samsung_gpio_getcfg_4bit; in samsung_gpiolib_set_cfg() 372 .get_config = samsung_gpio_getcfg_2bit, 378 .get_config = s3c24xx_gpio_getcfg_abank, 398 .get_config = samsung_gpio_getcfg_2bit, 403 .get_config = samsung_gpio_getcfg_2bit, 408 .get_config = samsung_gpio_getcfg_2bit, 412 .get_config = samsung_gpio_getcfg_2bit,
|
H A D | gpio-cfg.h | 36 * @get_config: Read the current configuration for the GPIO 56 unsigned (*get_config)(struct samsung_gpio_chip *chip, unsigned offs); member
|
H A D | gpio-cfg-helpers.h | 32 return (chip->config->get_config)(chip, off); in samsung_gpio_do_getcfg()
|
/kernel/linux/linux-6.6/arch/arm/mach-s3c/ |
H A D | gpio-samsung.c | 190 if (!chipcfg->get_config) in samsung_gpiolib_set_cfg() 191 chipcfg->get_config = samsung_gpio_getcfg_4bit; in samsung_gpiolib_set_cfg() 215 .get_config = samsung_gpio_getcfg_2bit, 220 .get_config = samsung_gpio_getcfg_2bit, 225 .get_config = samsung_gpio_getcfg_2bit, 229 .get_config = samsung_gpio_getcfg_2bit,
|
H A D | gpio-cfg.h | 36 * @get_config: Read the current configuration for the GPIO 56 unsigned (*get_config)(struct samsung_gpio_chip *chip, unsigned offs); member
|
/kernel/linux/linux-5.10/arch/um/drivers/ |
H A D | mconsole_kern.c | 411 .get_config = mem_get_config, 429 static void mconsole_get_config(int (*get_config)(char *, char *, int, in mconsole_get_config() 436 if (get_config == NULL) { in mconsole_get_config() 437 mconsole_reply(req, "No get_config routine defined", 1, 0); in mconsole_get_config() 446 n = (*get_config)(name, buf, size, &error); in mconsole_get_config() 495 else mconsole_get_config(dev->get_config, req, name); in mconsole_config()
|
H A D | mconsole_kern.h | 22 int (*get_config)(char *, char *, int, char **); member
|
H A D | ssl.c | 58 .get_config = ssl_get_config,
|
H A D | stdio_console.c | 64 .get_config = con_get_config,
|
/kernel/linux/linux-6.6/arch/um/drivers/ |
H A D | mconsole_kern.c | 412 .get_config = mem_get_config, 430 static void mconsole_get_config(int (*get_config)(char *, char *, int, in mconsole_get_config() 437 if (get_config == NULL) { in mconsole_get_config() 438 mconsole_reply(req, "No get_config routine defined", 1, 0); in mconsole_get_config() 447 n = (*get_config)(name, buf, size, &error); in mconsole_get_config() 496 else mconsole_get_config(dev->get_config, req, name); in mconsole_config()
|
H A D | mconsole_kern.h | 22 int (*get_config)(char *, char *, int, char **); member
|
H A D | stdio_console.c | 62 .get_config = con_get_config,
|
H A D | ssl.c | 56 .get_config = ssl_get_config,
|
/kernel/linux/linux-5.10/include/linux/qed/ |
H A D | qed_iov_if.h | 20 int (*get_config) (struct qed_dev *cdev, int vf_id, member
|
/kernel/linux/linux-6.6/include/linux/qed/ |
H A D | qed_iov_if.h | 20 int (*get_config) (struct qed_dev *cdev, int vf_id, member
|
/kernel/linux/linux-5.10/drivers/vdpa/vdpa_sim/ |
H A D | vdpa_sim.c | 77 void (*get_config)(struct vdpasim *vdpasim, void *config); member 595 if (vdpasim->dev_attr.get_config) in vdpasim_get_config() 596 vdpasim->dev_attr.get_config(vdpasim, vdpasim->config); in vdpasim_get_config() 706 .get_config = vdpasim_get_config, 733 .get_config = vdpasim_get_config, 757 dev_attr.get_config = vdpasim_net_get_config; in vdpasim_dev_init()
|
/kernel/linux/linux-5.10/include/linux/ |
H A D | vdpa.h | 147 * @get_config: Read from device specific configuration space 228 void (*get_config)(struct vdpa_device *vdev, unsigned int offset, member 335 ops->get_config(vdev, offset, buf, len); in vdpa_get_config()
|
/kernel/linux/linux-6.6/drivers/vdpa/vdpa_sim/ |
H A D | vdpa_sim.h | 48 void (*get_config)(struct vdpasim *vdpasim, void *config); member
|
H A D | vdpa_sim.c | 543 if (vdpasim->dev_attr.get_config) in vdpasim_get_config() 544 vdpasim->dev_attr.get_config(vdpasim, vdpasim->config); in vdpasim_get_config() 756 .get_config = vdpasim_get_config, 794 .get_config = vdpasim_get_config,
|
/kernel/uniproton/ |
H A D | build.py | 39 def get_config(self, cpu_type, cpu_plat): member in Compile 81 self.get_config(cpu_type, choice)
|
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/display/ |
H A D | intel_ddi.c | 4862 encoder->get_config = mtl_ddi_get_config; in intel_ddi_init() 4866 encoder->get_config = dg2_ddi_get_config; in intel_ddi_init() 4871 encoder->get_config = adls_ddi_get_config; in intel_ddi_init() 4876 encoder->get_config = rkl_ddi_get_config; in intel_ddi_init() 4881 encoder->get_config = dg1_ddi_get_config; in intel_ddi_init() 4888 encoder->get_config = icl_ddi_combo_get_config; in intel_ddi_init() 4893 encoder->get_config = icl_ddi_combo_get_config; in intel_ddi_init() 4901 encoder->get_config = icl_ddi_tc_get_config; in intel_ddi_init() 4906 encoder->get_config = icl_ddi_combo_get_config; in intel_ddi_init() 4910 encoder->get_config in intel_ddi_init() [all...] |
/kernel/linux/linux-5.10/drivers/scsi/ |
H A D | hptiop.h | 353 int (*get_config)(struct hptiop_hba *hba, member
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | vdpa.h | 255 * @get_config: Read from device specific configuration space 379 void (*get_config)(struct vdpa_device *vdev, unsigned int offset, member
|