Searched refs:cell (Results 126 - 150 of 174) sorted by relevance

1234567

/linux-master/fs/afs/
H A Dvlclient.c116 struct afs_net *net = vc->cell->net;
265 struct afs_net *net = vc->cell->net;
638 struct afs_net *net = vc->cell->net;
693 fallthrough; /* and extract the cell name length */
715 fallthrough; /* and extract cell name */
758 struct afs_net *net = vc->cell->net;
H A Dinternal.h51 bool force; /* T to force cell type */
60 struct afs_cell *cell; /* cell in which to find volume */ member in struct:afs_fs_context
262 struct afs_cell *cell; /* The cell in which the volume resides */ member in struct:afs_super_info
315 * cell, but in practice, people create aliases and subsets and there's
372 * AFS cell record.
380 * Cells only exist in the sense that (a) a cell's name maps to a set of VL
381 * servers and (b) a cell's name is used by the client to select the key to use
382 * for authentication and encryption. The cell nam
558 struct afs_cell *cell; /* Cell to which belongs (pins ref) */ member in struct:afs_server
639 struct afs_cell *cell; /* Cell to which belongs (pins ref) */ member in struct:afs_volume
801 struct afs_cell *cell; /* The cell we're querying */ member in struct:afs_vl_cursor
1314 afs_proc_cell_setup(struct afs_cell *cell) argument
1315 afs_proc_cell_remove(struct afs_cell *cell) argument
[all...]
/linux-master/include/trace/events/
H A Dafs.h82 afs_YFSVL_GetCellName = 64014, /* YFS Get actual cell name */
155 EM(afs_volume_trace_get_cell_insert, "GET cell-insrt") \
157 EM(afs_volume_trace_get_query_alias, "GET cell-alias") \
159 EM(afs_volume_trace_put_cell_dup, "PUT cell-dup ") \
160 EM(afs_volume_trace_put_cell_root, "PUT cell-root ") \
164 EM(afs_volume_trace_put_query_alias, "PUT cell-alias") \
1243 TP_PROTO(struct afs_cell *cell, struct afs_volume *volume),
1245 TP_ARGS(cell, volume),
1249 __array(char, cell, 24)
1256 __len = min_t(int, cell
[all...]
/linux-master/arch/powerpc/boot/dts/fsl/
H A Dmpc8544si-post.dtsi180 cell-index = <1>;
/linux-master/arch/powerpc/platforms/cell/
H A Dpmu.c22 #include <asm/cell-regs.h>
393 machine_arch_initcall(cell, cbe_init_pm_irq);
H A Dras.c22 #include <asm/cell-regs.h>
H A Dcbe_regs.c19 #include <asm/cell-regs.h>
/linux-master/scripts/dtc/
H A Dutil.c404 const fdt32_t *cell = (const fdt32_t *)data; local
408 printf("0x%08" PRIx32 "%s", fdt32_to_cpu(cell[i]),
/linux-master/drivers/power/supply/
H A Dsc27xx_fuel_gauge.c960 struct nvmem_cell *cell; local
965 cell = nvmem_cell_get(data->dev, "fgu_calib");
966 if (IS_ERR(cell))
967 return PTR_ERR(cell);
969 buf = nvmem_cell_read(cell, &len);
970 nvmem_cell_put(cell);
/linux-master/drivers/net/phy/
H A Ddp83867.c557 struct nvmem_cell *cell; local
561 cell = of_nvmem_cell_get(of_node, "io_impedance_ctrl");
562 if (IS_ERR(cell)) {
563 ret = PTR_ERR(cell);
566 "failed to get nvmem cell io_impedance_ctrl\n");
568 /* If no nvmem cell, check for the boolean properties. */
579 buf = nvmem_cell_read(cell, NULL);
580 nvmem_cell_put(cell);
589 phydev_err(phydev, "nvmem cell 'io_impedance_ctrl' contents out of range\n");
H A Dmediatek-ge-soc.c1075 struct nvmem_cell *cell; local
1077 cell = nvmem_cell_get(&phydev->mdio.dev, "phy-cal-data");
1078 if (IS_ERR(cell)) {
1079 if (PTR_ERR(cell) == -EPROBE_DEFER)
1080 return PTR_ERR(cell);
1084 buf = (u32 *)nvmem_cell_read(cell, &len);
1087 nvmem_cell_put(cell);
/linux-master/drivers/thermal/mediatek/
H A Dlvts_thermal.c697 struct nvmem_cell *cell; local
701 of_property_for_each_string(np, "nvmem-cell-names", prop, cell_name) {
705 cell = of_nvmem_cell_get(np, cell_name);
706 if (IS_ERR(cell)) {
707 dev_err(dev, "Failed to get cell '%s'\n", cell_name);
708 return PTR_ERR(cell);
711 efuse = nvmem_cell_read(cell, &len);
713 nvmem_cell_put(cell);
716 dev_err(dev, "Failed to read cell '%s'\n", cell_name);
/linux-master/drivers/parisc/
H A Diosapic.c214 ** for them easy - not necessarily accurate (eg "cell").
229 * @cell_num: The cell number of the CPU we're currently executing on
234 * entries in the PCI interrupt routing table for the cell specified
235 * in the cell_number argument. The cell number must be for a cell
238 * The "Get PCI INT Routing Table" option returns, for the cell
265 DBG("calling get_irt_size (cell %ld)\n", cell_num);
329 printk(MODULE_NAME " Interrupt Routing Table (cell %ld)\n", cell_num);
353 unsigned long cell = 0; local
362 cell
[all...]
/linux-master/drivers/phy/rockchip/
H A Dphy-rockchip-inno-hdmi.c1129 struct nvmem_cell *cell; local
1149 cell = nvmem_cell_get(inno->dev, "cpu-version");
1150 if (IS_ERR(cell)) {
1151 if (PTR_ERR(cell) == -EPROBE_DEFER)
1157 efuse_buf = nvmem_cell_read(cell, &len);
1158 nvmem_cell_put(cell);
/linux-master/drivers/net/ethernet/ni/
H A Dnixge.c1236 struct nvmem_cell *cell; local
1240 cell = nvmem_cell_get(dev, "address");
1241 if (IS_ERR(cell))
1242 return cell;
1244 mac = nvmem_cell_read(cell, &cell_size);
1245 nvmem_cell_put(cell);
/linux-master/drivers/mfd/
H A Dlpc_ich.c1031 struct mfd_cell *cell = &lpc_ich_wdt_cell; local
1042 cell->platform_data = pdata;
1043 cell->pdata_size = sizeof(*pdata);
1050 struct mfd_cell *cell = &lpc_ich_gpio_cell; local
1052 cell->platform_data = &lpc_chipset_info[priv->chipset];
1053 cell->pdata_size = sizeof(struct lpc_ich_info);
H A Dstmpe.h34 * @cell: base mfd cell
36 * in the cell
41 const struct mfd_cell *cell; member in struct:stmpe_variant_block
/linux-master/drivers/nvmem/
H A Dimx-ocotp.c229 /* Deal with some post processing of nvmem cell data */
587 struct nvmem_cell_info *cell)
589 cell->read_post_process = imx_ocotp_cell_pp;
586 imx_ocotp_fixup_dt_cell_info(struct nvmem_device *nvmem, struct nvmem_cell_info *cell) argument
/linux-master/drivers/md/
H A Ddm-ioctl.c75 * Protects use of mdptr to obtain hash cell name and uuid from mapped device.
264 struct hash_cell *cell, *hc; local
269 cell = alloc_cell(name, uuid, md);
270 if (!cell)
274 * Insert the cell into both hash tables.
283 __link_name(cell);
288 __unlink_name(cell);
292 __link_uuid(cell);
296 dm_set_mdptr(md, cell);
304 free_cell(cell);
[all...]
/linux-master/arch/powerpc/include/asm/
H A Dcell-regs.h19 #include <asm/cell-pmu.h>
/linux-master/arch/parisc/include/asm/
H A Dpdcpat.h15 * manipulatin g cell state within PD */
156 #define PDC_PAT_MEM_ADD_PAGE 10L /* ADDs a page to the cell */
355 unsigned long mod[508]; /* PAT cell module components */
382 unsigned long cell);
/linux-master/drivers/net/wireless/ath/ath9k/
H A Dinit.c575 struct nvmem_cell *cell; local
580 cell = devm_nvmem_cell_get(sc->dev, "calibration");
581 if (IS_ERR(cell)) {
582 err = PTR_ERR(cell);
584 /* nvmem cell might not be defined, or the nvmem
596 buf = nvmem_cell_read(cell, &len);
600 /* run basic sanity checks on the returned nvram cell length.
/linux-master/include/linux/
H A Dof.h236 static inline u64 of_read_number(const __be32 *cell, int size) argument
239 for (; size--; cell++)
240 r = (r << 32) | be32_to_cpu(*cell);
245 static inline unsigned long of_read_ulong(const __be32 *cell, int size) argument
248 return of_read_number(cell, size);
1013 /* If cells_name is NULL we assume a cell count of 0 */
/linux-master/arch/powerpc/platforms/powermac/
H A Dfeature.c191 /* Check if scc cell need enabling */
377 /* Set clear mesh cell enable */
622 /* Check if scc cell need enabling */
1438 int cell; local
1461 cell = node->name[4] - 'a';
1462 switch(cell) {
1476 MACIO_BIC(KEYLARGO_FCR0, fcrs[cell][0]);
1477 MACIO_BIS(KEYLARGO_FCR1, fcrs[cell][1]);
1478 MACIO_BIS(KEYLARGO_FCR3, fcrs[cell][2]);
1480 MACIO_BIC(KEYLARGO_FCR3, fcrs[cell][
[all...]
/linux-master/drivers/soc/mediatek/
H A Dmtk-svs.c1864 struct nvmem_cell *cell; local
1866 cell = nvmem_cell_get(svsp->dev, nvmem_cell_name);
1867 if (IS_ERR(cell)) {
1869 nvmem_cell_name, PTR_ERR(cell));
1870 return PTR_ERR(cell);
1873 *svsp_efuse = nvmem_cell_read(cell, svsp_efuse_max);
1875 nvmem_cell_put(cell);
1880 nvmem_cell_put(cell);

Completed in 381 milliseconds

1234567