Searched refs:maps (Results 1 - 25 of 235) sorted by path

12345678910

/linux-master/arch/sparc/include/asm/
H A Dhvtramp.h20 struct hvtramp_mapping maps[1]; member in struct:hvtramp_descr
/linux-master/drivers/media/tuners/
H A Dtda18271-maps.c3 tda18271-maps.c - driver for the Philips / NXP TDA18271 silicon tuner
1061 BUG_ON(!priv->maps);
1065 map = priv->maps->main_pll;
1069 map = priv->maps->cal_pll;
1112 BUG_ON(!priv->maps);
1116 map = priv->maps->bp_filter;
1120 map = priv->maps->rf_cal_kmco;
1124 map = priv->maps->rf_band;
1128 map = priv->maps->gain_taper;
1132 map = priv->maps
[all...]
H A Dtda18271-priv.h109 struct tda18271_map_layout *maps; member in struct:tda18271_priv
H A DMakefile7 tda18271-objs := tda18271-maps.o tda18271-common.o tda18271-fe.o
/linux-master/drivers/thermal/intel/
H A Dintel_bxt_pmic_thermal.c46 const struct thermal_irq_map *maps; member in struct:pmic_thermal_data
149 .maps = bxtwc_thermal_irq_map,
171 for (j = 0; j < td->maps[i].num_trips; j++) {
172 reg = td->maps[i].trip_config[j].irq_reg;
173 mask = td->maps[i].trip_config[j].irq_mask;
191 evt_stat_reg = td->maps[i].trip_config[j].evt_stat;
195 tzd = thermal_zone_get_zone_by_name(td->maps[i].handle);
257 for (j = 0; j < thermal_data->maps[i].num_trips; j++) {
258 reg = thermal_data->maps[i].trip_config[j].irq_en;
259 mask = thermal_data->maps[
[all...]
/linux-master/fs/xfs/
H A Dxfs_pnfs.h9 int xfs_fs_commit_blocks(struct inode *inode, struct iomap *maps, int nr_maps,
/linux-master/tools/perf/util/
H A Dfind-map.c4 FILE *maps; local
8 maps = fopen("/proc/self/maps", "r");
9 if (!maps) {
10 fprintf(stderr, "cannot open maps\n");
14 while (!found && fgets(line, sizeof(line), maps)) {
28 fclose(maps);
/linux-master/arch/arm/mach-at91/
H A Dpm.c1220 static void __init at91_pm_modes_init(const u32 *maps, int len) argument
1235 if (maps[soc_pm.data.standby_mode] & AT91_PM_IOMAP(SHDWC) ||
1236 maps[soc_pm.data.suspend_mode] & AT91_PM_IOMAP(SHDWC)) {
1240 AT91_PM_REPLACE_MODES(maps, SHDWC);
1247 if (maps[soc_pm.data.standby_mode] & AT91_PM_IOMAP(SFRBU) ||
1248 maps[soc_pm.data.suspend_mode] & AT91_PM_IOMAP(SFRBU)) {
1252 AT91_PM_REPLACE_MODES(maps, SFRBU);
1262 (maps[soc_pm.data.standby_mode] & AT91_PM_IOMAP(ETHC) ||
1263 maps[soc_pm.data.suspend_mode] & AT91_PM_IOMAP(ETHC))) {
1269 AT91_PM_REPLACE_MODES(maps, ETH
[all...]
/linux-master/arch/sparc/kernel/
H A Dsmp_64.c325 hdesc->maps[i].vaddr = tte_vaddr;
326 hdesc->maps[i].tte = tte_data;
/linux-master/drivers/crypto/axis/
H A Dartpec6_crypto.c244 /* Enough maps for all out/in buffers, and all three descr. arrays */
245 struct artpec6_crypto_dma_map maps[PDMA_DESCR_COUNT * 2 + 2]; member in struct:artpec6_crypto_dma_descriptors
614 if (dma->map_count >= ARRAY_SIZE(dma->maps))
621 map = &dma->maps[dma->map_count++];
684 struct artpec6_crypto_dma_map *map = &dma->maps[i];
/linux-master/drivers/gpu/drm/nouveau/nvkm/subdev/instmem/
H A Dnv50.c51 refcount_t maps; member in struct:nv50_instobj
201 if (refcount_dec_and_mutex_lock(&iobj->maps, &imem->base.mutex)) {
225 if (refcount_inc_not_zero(&iobj->maps)) {
235 if (refcount_inc_not_zero(&iobj->maps)) {
247 if (!refcount_inc_not_zero(&iobj->maps)) {
258 refcount_set(&iobj->maps, 1);
369 refcount_set(&iobj->maps, 0);
/linux-master/drivers/hid/bpf/entrypoints/
H A Dentrypoints.lskel.h12 } maps; member in struct:entrypoints_bpf
53 skel_closenz(skel->maps.hid_jmp_table.map_fd);
/linux-master/drivers/hid/bpf/
H A Dhid_bpf_jmp_table.c553 jmp_table.map = bpf_map_get_with_uref(skel->maps.hid_jmp_table.map_fd);
/linux-master/drivers/iio/adc/
H A Daxp20x_adc.c629 struct iio_map *maps; member in struct:axp_data
639 .maps = axp20x_maps,
648 .maps = axp22x_maps,
657 .maps = axp22x_maps,
722 ret = iio_map_array_register(indio_dev, info->data->maps);
724 dev_err(&pdev->dev, "failed to register IIO maps: %d\n", ret);
/linux-master/drivers/iio/
H A Dinkern.c44 int iio_map_array_register(struct iio_dev *indio_dev, struct iio_map *maps) argument
49 if (!maps)
53 while (maps[i].consumer_dev_name) {
59 mapi->map = &maps[i];
93 int devm_iio_map_array_register(struct device *dev, struct iio_dev *indio_dev, struct iio_map *maps) argument
97 ret = iio_map_array_register(indio_dev, maps);
473 /* first count the matching maps */
/linux-master/drivers/iommu/
H A Dof_iommu.c211 const __be32 *maps, *end; local
231 maps = of_get_property(it.node, "iommu-addresses", &size);
232 if (!maps)
235 end = maps + size / sizeof(__be32);
237 while (maps < end) {
241 phandle = be32_to_cpup(maps++);
254 maps = of_translate_dma_region(np, maps, &iova, &length);
/linux-master/drivers/irqchip/
H A Dirq-gic-v3-its.c1857 struct its_vlpi_map *maps; local
1859 maps = kcalloc(its_dev->event_map.nr_lpis, sizeof(*maps),
1861 if (!maps) {
1867 its_dev->event_map.vlpi_maps = maps;
4714 * which maps 32-bit writes targeted at a separate window of
H A Dirq-qcom-mpm.c83 struct mpm_gic_map *maps; member in struct:qcom_mpm_priv
204 struct mpm_gic_map *maps = priv->maps; local
208 if (maps[i].pin == pin)
209 return &maps[i];
309 static bool gic_hwirq_is_mapped(struct mpm_gic_map *maps, int cnt, u32 hwirq) argument
314 if (maps[i].hwirq == hwirq)
357 priv->maps = devm_kcalloc(dev, priv->map_cnt, sizeof(*priv->maps),
359 if (!priv->maps)
[all...]
/linux-master/drivers/md/
H A Ddm-thin.c1227 struct list_head maps; local
1230 INIT_LIST_HEAD(&maps);
1232 list_splice_init(head, &maps);
1235 list_for_each_entry_safe(m, tmp, &maps, list)
/linux-master/drivers/misc/
H A Dfastrpc.c248 struct fastrpc_map **maps; member in struct:fastrpc_invoke_ctx
293 struct list_head maps; member in struct:fastrpc_user
372 list_for_each_entry(map, &fl->maps, node) {
490 fastrpc_map_put(ctx->maps[i]);
499 kfree(ctx->maps);
593 ctx->maps = kcalloc(ctx->nscalars,
594 sizeof(*ctx->maps), GFP_KERNEL);
595 if (!ctx->maps) {
602 kfree(ctx->maps);
643 kfree(ctx->maps);
[all...]
/linux-master/drivers/mtd/
H A DMakefile29 obj-y += chips/ lpddr/ maps/ devices/ nand/ tests/
/linux-master/drivers/mtd/maps/
H A Damd76xrom.c35 struct list_head maps; member in struct:amd76xrom_window
66 .maps = LIST_HEAD_INIT(amd76xrom_window.maps),
82 list_for_each_entry_safe(map, scratch, &window->maps, list) {
275 list_add(&map->list, &window->maps);
283 if (list_empty(&window->maps)) {
H A Dck804xrom.c39 struct list_head maps; member in struct:ck804xrom_window
79 .maps = LIST_HEAD_INIT(ck804xrom_window.maps),
94 list_for_each_entry_safe(map, scratch, &window->maps, list) {
304 list_add(&map->list, &window->maps);
313 if (list_empty(&window->maps)) {
H A Desb2rom.c101 struct list_head maps; member in struct:esb2rom_window
115 .maps = LIST_HEAD_INIT(esb2rom_window.maps),
129 list_for_each_entry_safe(map, scratch, &window->maps, list) {
365 list_add(&map->list, &window->maps);
374 if (list_empty(&window->maps)) {
H A Dichxrom.c40 struct list_head maps; member in struct:ichxrom_window
54 .maps = LIST_HEAD_INIT(ichxrom_window.maps),
70 list_for_each_entry_safe(map, scratch, &window->maps, list) {
302 list_add(&map->list, &window->maps);
311 if (list_empty(&window->maps)) {

Completed in 446 milliseconds

12345678910