Searched refs:start (Results 201 - 225 of 1855) sorted by relevance

1234567891011>>

/drivers/net/
H A Ddummy.c74 unsigned int start; local
78 start = u64_stats_fetch_begin(&dstats->syncp);
81 } while (u64_stats_fetch_retry(&dstats->syncp, start));
H A Dloopback.c106 unsigned int start; local
110 start = u64_stats_fetch_begin(&lb_stats->syncp);
113 } while (u64_stats_fetch_retry(&lb_stats->syncp, start));
/drivers/net/ethernet/i825xx/
H A Dlasi_82596.c163 __FILE__, (unsigned long)dev->hpa.start);
168 (unsigned long)dev->hpa.start, dev->irq);
176 netdevice->base_addr = dev->hpa.start;
/drivers/net/ethernet/ti/
H A Dcpsw_ale.c54 static inline int cpsw_ale_get_field(u32 *ale_entry, u32 start, u32 bits) argument
58 idx = start / 32;
59 start -= idx * 32;
61 return (ale_entry[idx] >> start) & BITMASK(bits);
64 static inline void cpsw_ale_set_field(u32 *ale_entry, u32 start, u32 bits, argument
70 idx = start / 32;
71 start -= idx * 32;
73 ale_entry[idx] &= ~(BITMASK(bits) << start);
74 ale_entry[idx] |= (value << start);
77 #define DEFINE_ALE_FIELD(name, start, bit
[all...]
/drivers/parport/
H A Dparport_cs.c140 p = parport_pc_probe_port(link->resource[0]->start,
141 link->resource[1]->start,
147 (unsigned int) link->resource[0]->start,
/drivers/pnp/
H A Dbase.h167 resource_size_t start,
170 resource_size_t start,
173 resource_size_t start,
/drivers/sh/superhyway/
H A Dsuperhyway.c76 dev->resource->start = base;
77 dev->resource->end = dev->resource->start + 0x01000000;
101 ret |= superhyway_add_device(dev->resource[0].start, dev, bus);
/drivers/usb/host/
H A Dehci-cns3xxx.c59 .start = ehci_run,
96 irq = res->start;
109 hcd->rsrc_start = res->start;
H A Dehci-ixp4xx.c48 .start = ehci_run,
86 irq = res->start;
102 hcd->rsrc_start = res->start;
H A Dehci-vt8500.c52 .start = ehci_run,
106 hcd->rsrc_start = res->start;
137 ret = usb_add_hcd(hcd, pdev->resource[1].start,
H A Dohci-cns3xxx.c44 err("can't start %s", hcd->self.bus_name);
57 .start = cns3xxx_ohci_start,
90 irq = res->start;
102 hcd->rsrc_start = res->start;
H A Dohci-omap3.c62 dev_err(hcd->self.controller, "can't start\n");
86 .start = ohci_omap3_start,
125 * then invokes the start() method for the HCD associated with it
158 regs = ioremap(res->start, resource_size(res));
172 hcd->rsrc_start = res->start;
/drivers/gpu/drm/r128/
H A Dr128_state.c635 struct drm_buf *buf, int start, int end)
640 DRM_DEBUG("indirect: buf=%d s=0x%x e=0x%x\n", buf->idx, start, end);
642 if (start != end) {
643 int offset = buf->bus_address + start;
644 int dwords = (end - start + 3) / sizeof(u32);
653 + buf->offset + start);
691 int start, int end, int count)
703 DRM_DEBUG("indices: s=%d e=%d c=%d\n", start, end, count);
708 if (start != end) {
714 dwords = (end - start
634 r128_cce_dispatch_indirect(struct drm_device *dev, struct drm_buf *buf, int start, int end) argument
689 r128_cce_dispatch_indices(struct drm_device *dev, struct drm_buf *buf, int start, int end, int count) argument
[all...]
/drivers/md/
H A Ddm-flakey.c28 sector_t start; member in struct:flakey_c
186 fc->start = tmpll;
237 return fc->start + dm_target_offset(ti, bi_sector);
349 (unsigned long long)fc->start, fc->up_interval,
378 if (fc->start ||
404 return fn(ti, fc->dev, fc->start, ti->len, data);
/drivers/parisc/
H A Deisa_enumerator.c98 res->start = mem_parent->start + get_24(buf+len+2);
99 res->end = res->start + get_16(buf+len+5)*1024;
101 printk("memory %lx-%lx ", (unsigned long)res->start, (unsigned long)res->end);
188 res->start = get_16(buf+len+1);
191 printk("ioports %lx-%lx ", (unsigned long)res->start, (unsigned long)res->end);
/drivers/pcmcia/
H A Dpcmcia_cis.c204 p_dev->resource[0]->start = p_dev->resource[0]->end = 0;
205 p_dev->resource[1]->start = p_dev->resource[1]->end = 0;
218 p_dev->resource[1]->start = io->win[1-i].base;
221 p_dev->resource[0]->start = io->win[i].base;
231 p_dev->resource[2]->start = p_dev->resource[2]->end = 0;
235 p_dev->resource[2]->start = mem->win[0].host_addr;
/drivers/sfi/
H A Dsfi_core.c343 void *start; local
346 start = sfi_map_memory(SFI_SYST_SEARCH_BEGIN, len);
347 if (!start)
353 syst_hdr = start + offset;
378 sfi_unmap_memory(start, len);
382 sfi_unmap_memory(start, len);
/drivers/watchdog/
H A Dof_xilinx_wdt.c337 if (!request_mem_region(xdev.res.start,
338 xdev.res.end - xdev.res.start + 1, WATCHDOG_NAME)) {
344 xdev.base = ioremap(xdev.res.start, xdev.res.end - xdev.res.start + 1);
381 release_mem_region(xdev.res.start, resource_size(&xdev.res));
390 release_mem_region(xdev.res.start, resource_size(&xdev.res));
/drivers/acpi/acpica/
H A Dpsargs.c129 u8 *start = parser_state->aml; local
138 return_PTR(start + package_length); /* end of package */
147 * RETURN: Pointer to the start of the name string (pointer points into
158 u8 *start = parser_state->aml; local
176 if (end == start) {
177 start = NULL;
205 return_PTR((char *)start);
217 * start of a method call
239 u8 *start = parser_state->aml; local
277 walk_state->parser_state.aml = start;
[all...]
/drivers/bluetooth/
H A Dbtuart_cs.c143 register unsigned int iobase = info->p_dev->resource[0]->start;
184 iobase = info->p_dev->resource[0]->start;
298 iobase = info->p_dev->resource[0]->start;
355 iobase = info->p_dev->resource[0]->start;
474 unsigned int iobase = info->p_dev->resource[0]->start;
541 unsigned int iobase = info->p_dev->resource[0]->start;
599 if ((p_dev->resource[0]->end != 8) || (p_dev->resource[0]->start == 0))
623 p_dev->resource[0]->start = base[j];
/drivers/char/hw_random/
H A Docteon-rng.c86 res_ports->start,
92 res_result->start,
H A Dpicoxcell-rng.c112 if (!devm_request_mem_region(&pdev->dev, mem->start, resource_size(mem),
118 rng_base = devm_ioremap(&pdev->dev, mem->start, resource_size(mem));
/drivers/gpu/drm/i915/
H A Di915_gem_gtt.c278 obj->gtt_space->start >> PAGE_SHIFT,
282 obj->gtt_space->start >> PAGE_SHIFT,
292 obj->gtt_space->start >> PAGE_SHIFT,
372 obj->gtt_space->start >> PAGE_SHIFT,
375 intel_gtt_insert_pages(obj->gtt_space->start >> PAGE_SHIFT,
395 obj->gtt_space->start >> PAGE_SHIFT,
398 intel_gtt_insert_pages(obj->gtt_space->start >> PAGE_SHIFT,
412 intel_gtt_clear_range(obj->gtt_space->start >> PAGE_SHIFT,
/drivers/gpu/drm/ttm/
H A Dttm_bo_manager.c85 mem->start = node->start;
/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_gmrid_manager.c85 mem->start = id;
109 ida_remove(&gman->gmr_ida, mem->start);

Completed in 769 milliseconds

1234567891011>>