Home
last modified time | relevance | path

Searched refs:postfix (Results 1 – 25 of 34) sorted by relevance

12

/linux/drivers/firmware/broadcom/
A Dbcm47xx_sprom.c39 if (prefix && postfix) in create_key()
43 else if (postfix) in create_key()
44 snprintf(buf, len, "%s%s", name, postfix); in create_key()
67 const char *postfix, const char *name, \
81 prefix, name, postfix, buf, err); \
412 char postfix[2]; in bcm47xx_fill_sprom_path_r4589() local
420 snprintf(postfix, sizeof(postfix), "%i", i); in bcm47xx_fill_sprom_path_r4589()
423 nvram_read_u8(prefix, postfix, "itt2ga", in bcm47xx_fill_sprom_path_r4589()
425 nvram_read_u8(prefix, postfix, "itt5ga", in bcm47xx_fill_sprom_path_r4589()
463 char postfix[2]; in bcm47xx_fill_sprom_path_r45() local
[all …]
/linux/drivers/media/v4l2-core/
A Dv4l2-i2c.c33 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/tools/iio/
A Dlsiio.c34 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/drivers/clk/ti/
A Dadpll.c184 const char *postfix) in ti_adpll_clk_get_name() argument
198 d->pa, postfix); in ti_adpll_clk_get_name()
211 const char *postfix = NULL; in ti_adpll_setup_clock() local
218 postfix = strrchr(name, '.'); in ti_adpll_setup_clock()
219 if (postfix && strlen(postfix) > 1) { in ti_adpll_setup_clock()
220 if (strlen(postfix) > ADPLL_MAX_CON_ID) in ti_adpll_setup_clock()
223 snprintf(con_id, 16, "pll%03lx%s", d->pa & 0xfff, postfix + 1); in ti_adpll_setup_clock()
495 const char *postfix; in ti_adpll_init_dco() local
506 postfix = "dco"; in ti_adpll_init_dco()
508 postfix = NULL; in ti_adpll_init_dco()
[all …]
/linux/drivers/iio/
A Dindustrialio-event.c361 char *postfix; in iio_device_add_event() local
368 postfix = kasprintf(GFP_KERNEL, "%s_%s_%s", in iio_device_add_event()
373 postfix = kasprintf(GFP_KERNEL, "%s_%s", in iio_device_add_event()
376 if (postfix == NULL) in iio_device_add_event()
387 ret = __iio_add_chan_devattr(postfix, chan, show, store, in iio_device_add_event()
391 kfree(postfix); in iio_device_add_event()
A Diio_core.h40 int __iio_add_chan_devattr(const char *postfix,
A Dindustrialio-core.c1001 const char *postfix, in __iio_device_attr_init() argument
1024 postfix); in __iio_device_attr_init()
1029 postfix); in __iio_device_attr_init()
1032 full_postfix = kstrdup(postfix, GFP_KERNEL); in __iio_device_attr_init()
1037 postfix); in __iio_device_attr_init()
1134 int __iio_add_chan_devattr(const char *postfix, in __iio_add_chan_devattr() argument
1156 postfix, chan, in __iio_add_chan_devattr()
/linux/drivers/bluetooth/
A Dbtbcm.c435 char postfix[16] = ""; in btbcm_initialize() local
493 snprintf(postfix, sizeof(postfix), "-%4.4x-%4.4x", vid, pid); in btbcm_initialize()
502 "brcm/%s%s.hcd", hw_name, postfix); in btbcm_initialize()
507 "brcm/BCM%s.hcd", postfix); in btbcm_initialize()
A Dbtrtl.h53 const char *postfix);
69 const char *postfix) in btrtl_initialize() argument
A Dbtrtl.c571 const char *postfix) in btrtl_initialize() argument
675 if (postfix) { in btrtl_initialize()
677 btrtl_dev->ic_info->cfg_name, postfix); in btrtl_initialize()
/linux/arch/powerpc/include/asm/
A Dbitops.h109 #define DEFINE_TESTOP(fn, op, prefix, postfix, eh) \ argument
122 postfix \
/linux/drivers/firmware/imx/
A Dscu-pd.c87 bool postfix; member
310 if (pd_ranges->postfix) in imx_scu_add_pm_domain()
/linux/drivers/gpu/drm/i915/
A Di915_request.c209 if (rq->postfix < head) { in __i915_request_fill()
213 memset(vaddr + head, val, rq->postfix - head); in __i915_request_fill()
334 rq->ring->head = rq->postfix; in i915_request_retire()
508 if (rq->infix == rq->postfix) in __i915_request_skip()
519 rq->infix = rq->postfix; in __i915_request_skip()
614 request->ring->vaddr + request->postfix); in __i915_request_submit()
1710 rq->postfix = intel_ring_offset(rq, cs); in __i915_request_commit()
A Di915_request.h281 u32 postfix; member
/linux/include/media/
A Dv4l2-common.h183 const char *devname, const char *postfix);
242 const char *devname, const char *postfix) in v4l2_i2c_subdev_set_name() argument
/linux/Documentation/driver-api/media/drivers/ccs/
A Dmk-ccs-regs215 my ($this, $postfix, $is_same_reg) = @_;
218 my $varname = "ccs_reg_arg_" . (lc $name) . $postfix;
/linux/tools/perf/util/
A Ddata.h92 const char *postfix,
A Ddata.c409 const char *postfix, in perf_data__switch() argument
420 if (asprintf(new_filepath, "%s.%s", data->path, postfix) < 0) in perf_data__switch()
/linux/scripts/kconfig/
A Dconfdata.c589 const char *postfix; member
595 .postfix = "#",
601 .postfix = " */",
613 fprintf(fp, "%s\n", cs->postfix); in conf_write_heading()
/linux/drivers/misc/cxl/
A Dfile.c565 struct device **chardev, char *postfix, char *desc, in cxl_add_chardev() argument
579 "afu%i.%i%s", afu->adapter->adapter_num, afu->slice, postfix); in cxl_add_chardev()
/linux/drivers/gpu/drm/i915/gt/
A Dintel_ring.c206 if (bytes <= __intel_ring_space(target->postfix, in wait_for_space()
A Dselftest_execlists.c237 GEM_BUG_ON(rq[0]->postfix > ce[1]->ring->emit); in live_unlite_restore()
267 GEM_BUG_ON(rq[1]->postfix <= rq[0]->postfix); in live_unlite_restore()
290 GEM_BUG_ON(rq[0]->postfix > rq[1]->postfix); in live_unlite_restore()
/linux/scripts/mod/
A Dmodpost.c93 static inline bool strends(const char *str, const char *postfix) in strends() argument
95 if (strlen(str) < strlen(postfix)) in strends()
98 return strcmp(str + strlen(str) - strlen(postfix), postfix) == 0; in strends()
/linux/Documentation/block/
A Dqueue-sysfs.rst10 Files denoted with a RO postfix are readonly and the RW postfix means
/linux/drivers/net/wireless/zydas/zd1211rw/
A Dzd_usb.c215 const char* postfix) in get_fw_name() argument
220 postfix); in get_fw_name()

Completed in 66 milliseconds

12