/linux-6.12.1/drivers/firmware/broadcom/ |
D | bcm47xx_sprom.c | 36 static void create_key(const char *prefix, const char *postfix, in create_key() argument 39 if (prefix && postfix) in create_key() 40 snprintf(buf, len, "%s%s%s", prefix, name, postfix); in create_key() 43 else if (postfix) in create_key() 44 snprintf(buf, len, "%s%s", name, postfix); in create_key() 49 static int get_nvram_var(const char *prefix, const char *postfix, in get_nvram_var() argument 55 create_key(prefix, postfix, name, key, sizeof(key)); in get_nvram_var() 59 create_key(NULL, postfix, name, key, sizeof(key)); in get_nvram_var() 67 const char *postfix, const char *name, \ 74 err = get_nvram_var(prefix, postfix, name, buf, sizeof(buf), \ [all …]
|
/linux-6.12.1/drivers/iio/ |
D | industrialio-event.c | 394 char *postfix; in iio_device_add_event() local 401 postfix = kasprintf(GFP_KERNEL, "%s_%s_%s", in iio_device_add_event() 406 postfix = kasprintf(GFP_KERNEL, "%s_%s", in iio_device_add_event() 409 if (postfix == NULL) in iio_device_add_event() 420 ret = __iio_add_chan_devattr(postfix, chan, show, store, in iio_device_add_event() 424 kfree(postfix); in iio_device_add_event() 445 char *postfix; in iio_device_add_event_label() local 452 postfix = kasprintf(GFP_KERNEL, "%s_%s_label", in iio_device_add_event_label() 456 postfix = kasprintf(GFP_KERNEL, "%s_label", in iio_device_add_event_label() 458 if (postfix == NULL) in iio_device_add_event_label() [all …]
|
D | iio_core.h | 41 int __iio_add_chan_devattr(const char *postfix,
|
D | industrialio-core.c | 1019 const char *postfix, in __iio_device_attr_init() argument 1042 postfix); in __iio_device_attr_init() 1046 postfix); in __iio_device_attr_init() 1049 full_postfix = kstrdup(postfix, GFP_KERNEL); in __iio_device_attr_init() 1054 postfix); in __iio_device_attr_init() 1151 int __iio_add_chan_devattr(const char *postfix, in __iio_add_chan_devattr() argument 1173 postfix, chan, in __iio_add_chan_devattr()
|
/linux-6.12.1/drivers/media/v4l2-core/ |
D | v4l2-i2c.c | 33 const char *devname, const char *postfix) in v4l2_i2c_subdev_set_name() argument 37 if (!postfix) in v4l2_i2c_subdev_set_name() 38 postfix = ""; in v4l2_i2c_subdev_set_name() 40 snprintf(sd->name, sizeof(sd->name), "%s%s %d-%04x", devname, postfix, in v4l2_i2c_subdev_set_name()
|
/linux-6.12.1/tools/iio/ |
D | lsiio.c | 34 static inline int check_postfix(const char *str, const char *postfix) in check_postfix() argument 36 return strlen(str) > strlen(postfix) && in check_postfix() 37 strcmp(str + strlen(str) - strlen(postfix), postfix) == 0; in check_postfix()
|
/linux-6.12.1/drivers/clk/ti/ |
D | adpll.c | 177 const char *postfix) in ti_adpll_clk_get_name() argument 191 d->pa, postfix); in ti_adpll_clk_get_name() 204 const char *postfix = NULL; in ti_adpll_setup_clock() local 211 postfix = strrchr(name, '.'); in ti_adpll_setup_clock() 212 if (postfix && strlen(postfix) > 1) { in ti_adpll_setup_clock() 213 if (strlen(postfix) > ADPLL_MAX_CON_ID) in ti_adpll_setup_clock() 216 snprintf(con_id, 16, "pll%03lx%s", d->pa & 0xfff, postfix + 1); in ti_adpll_setup_clock() 488 const char *postfix; in ti_adpll_init_dco() local 499 postfix = "dco"; in ti_adpll_init_dco() 501 postfix = NULL; in ti_adpll_init_dco() [all …]
|
/linux-6.12.1/drivers/bluetooth/ |
D | btbcm.c | 574 char postfix[16] = ""; in btbcm_initialize() local 641 snprintf(postfix, sizeof(postfix), "-%4.4x-%4.4x", vid, pid); in btbcm_initialize() 651 "brcm/%s%s.%s.hcd", hw_name, postfix, board_name); in btbcm_initialize() 655 "brcm/%s%s.hcd", hw_name, postfix); in btbcm_initialize() 661 "brcm/BCM%s.%s.hcd", postfix, board_name); in btbcm_initialize() 665 "brcm/BCM%s.hcd", postfix); in btbcm_initialize()
|
D | btrtl.h | 138 const char *postfix); 155 const char *postfix) in btrtl_initialize() argument
|
D | btrtl.c | 1059 const char *postfix) in btrtl_initialize() argument 1204 if (postfix) { in btrtl_initialize() 1206 btrtl_dev->ic_info->cfg_name, postfix); in btrtl_initialize()
|
/linux-6.12.1/tools/thermal/thermometer/ |
D | thermometer.c | 42 char postfix[PATH_MAX]; member 212 strftime(options->postfix, sizeof(options->postfix), in options_init() 237 strcpy(options->postfix, optarg); in options_init() 373 thermometer->tz[i].name, options->postfix); in thermometer_start()
|
/linux-6.12.1/tools/testing/memblock/tests/ |
D | common.c | 154 void print_prefixes(const char *postfix) in print_prefixes() argument 158 test_print(postfix); in print_prefixes()
|
/linux-6.12.1/arch/powerpc/include/asm/ |
D | bitops.h | 151 #define DEFINE_TESTOP(fn, op, prefix, postfix, eh) \ argument 164 postfix \
|
/linux-6.12.1/scripts/kconfig/ |
D | confdata.c | 526 const char *postfix; member 532 .postfix = "#", 538 .postfix = " */", 553 fprintf(fp, "%s\n", cs->postfix); in conf_write_heading()
|
/linux-6.12.1/drivers/gpu/drm/i915/ |
D | i915_request.c | 226 if (rq->postfix < head) { in __i915_request_fill() 230 memset(vaddr + head, val, rq->postfix - head); in __i915_request_fill() 383 rq->ring->head = rq->postfix; in i915_request_retire() 556 if (rq->infix == rq->postfix) in __i915_request_skip() 567 rq->infix = rq->postfix; in __i915_request_skip() 662 request->ring->vaddr + request->postfix); in __i915_request_submit() 1811 rq->postfix = intel_ring_offset(rq, cs); in __i915_request_commit()
|
D | i915_request.h | 291 u32 postfix; member
|
/linux-6.12.1/tools/perf/util/ |
D | data.h | 94 const char *postfix,
|
D | data.c | 432 const char *postfix, in perf_data__switch() argument 441 if (asprintf(new_filepath, "%s.%s", data->path, postfix) < 0) in perf_data__switch()
|
/linux-6.12.1/kernel/bpf/ |
D | log.c | 442 char postfix[16] = {0}, prefix[64] = {0}; in reg_type_str() local 470 strscpy(postfix, "or_null_"); in reg_type_str() 472 strscpy(postfix, "_or_null"); in reg_type_str() 486 prefix, str[base_type(type)], postfix); in reg_type_str()
|
/linux-6.12.1/Documentation/driver-api/media/drivers/ccs/ |
D | mk-ccs-regs | 247 my ($this, $postfix, $is_same_reg) = @_; 250 my $varname = "ccs_reg_arg_" . (lc $name) . $postfix;
|
/linux-6.12.1/drivers/pmdomain/imx/ |
D | scu-pd.c | 104 bool postfix; member 430 if (pd_ranges->postfix) in imx_scu_add_pm_domain()
|
/linux-6.12.1/include/media/ |
D | v4l2-common.h | 184 const char *devname, const char *postfix); 243 const char *devname, const char *postfix) in v4l2_i2c_subdev_set_name() argument
|
/linux-6.12.1/Documentation/security/tpm/ |
D | tpm_tis.rst | 17 framework for FIFO drivers is named as tpm_tis_core. The postfix "tis" in
|
/linux-6.12.1/drivers/misc/cxl/ |
D | file.c | 566 struct device **chardev, char *postfix, char *desc, in cxl_add_chardev() argument 580 "afu%i.%i%s", afu->adapter->adapter_num, afu->slice, postfix); in cxl_add_chardev()
|
/linux-6.12.1/drivers/gpu/drm/i915/gt/ |
D | intel_ring.c | 209 if (bytes <= __intel_ring_space(target->postfix, in wait_for_space()
|