/drivers/net/ethernet/dec/tulip/ |
D | de2104x.c | 327 static void de_tx (struct de_private *de); 328 static void de_clean_rings (struct de_private *de); 329 static void de_media_interrupt (struct de_private *de, u32 status); 332 static unsigned int de_ok_to_advertise (struct de_private *de, u32 new_media); 366 #define dr32(reg) ioread32(de->regs + (reg)) 367 #define dw32(reg, val) iowrite32((val), de->regs + (reg)) 370 static void de_rx_err_acct (struct de_private *de, unsigned rx_tail, in de_rx_err_acct() argument 373 netif_dbg(de, rx_err, de->dev, in de_rx_err_acct() 380 netif_warn(de, rx_err, de->dev, in de_rx_err_acct() 383 de->dev->stats.rx_length_errors++; in de_rx_err_acct() [all …]
|
/drivers/gpu/drm/i915/gt/ |
D | selftest_engine_pm.c | 32 ktime_t de, dt; in live_engine_busy_stats() local 50 de = intel_engine_get_busy_time(engine, &t[0]); in live_engine_busy_stats() 52 de = ktime_sub(intel_engine_get_busy_time(engine, &t[1]), de); in live_engine_busy_stats() 55 if (de < 0 || de > 10) { in live_engine_busy_stats() 58 de, (int)div64_u64(100 * de, dt), dt); in live_engine_busy_stats() 82 de = intel_engine_get_busy_time(engine, &t[0]); in live_engine_busy_stats() 84 de = ktime_sub(intel_engine_get_busy_time(engine, &t[1]), de); in live_engine_busy_stats() 87 if (100 * de < 95 * dt || 95 * de > 100 * dt) { in live_engine_busy_stats() 90 de, (int)div64_u64(100 * de, dt), dt); in live_engine_busy_stats()
|
/drivers/net/wireless/ath/ |
D | dfs_pri_detector.c | 375 static void pri_detector_exit(struct pri_detector *de) in pri_detector_exit() argument 377 pri_detector_reset(de, 0); in pri_detector_exit() 379 kfree(de); in pri_detector_exit() 382 static struct pri_sequence *pri_detector_add_pulse(struct pri_detector *de, in pri_detector_add_pulse() argument 388 const struct radar_detector_specs *rs = de->rs; in pri_detector_add_pulse() 394 if ((ts - de->last_ts) < rs->max_pri_tolerance) in pri_detector_add_pulse() 401 de->last_ts = ts; in pri_detector_add_pulse() 403 max_updated_seq = pseq_handler_add_to_existing_seqs(de, ts); in pri_detector_add_pulse() 405 if (!pseq_handler_create_sequences(de, ts, max_updated_seq)) { in pri_detector_add_pulse() 406 pri_detector_reset(de, ts); in pri_detector_add_pulse() [all …]
|
D | dfs_pri_detector.h | 60 void (*exit) (struct pri_detector *de); 62 (*add_pulse)(struct pri_detector *de, struct pulse_event *e); 63 void (*reset) (struct pri_detector *de, u64 ts);
|
D | dfs_pattern_detector.c | 187 struct pri_detector *de = cd->detectors[i]; in channel_detector_exit() local 188 if (de != NULL) in channel_detector_exit() 189 de->exit(de); in channel_detector_exit() 215 struct pri_detector *de = pri_detector_init(rs); in channel_detector_create() local 216 if (de == NULL) in channel_detector_create() 218 cd->detectors[i] = de; in channel_detector_create()
|
/drivers/gpu/host1x/ |
D | debug.c | 167 struct dentry *de = debugfs_create_dir("tegra-host1x", NULL); in host1x_debugfs_init() local 170 host1x->debugfs = de; in host1x_debugfs_init() 172 debugfs_create_file("status", S_IRUGO, de, host1x, &host1x_debug_fops); in host1x_debugfs_init() 173 debugfs_create_file("status_all", S_IRUGO, de, host1x, in host1x_debugfs_init() 176 debugfs_create_u32("trace_cmdbuf", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init() 179 host1x_hw_debug_init(host1x, de); in host1x_debugfs_init() 181 debugfs_create_u32("force_timeout_pid", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init() 183 debugfs_create_u32("force_timeout_val", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init() 185 debugfs_create_u32("force_timeout_channel", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init()
|
D | dev.h | 53 void (*debug_init)(struct dentry *de); 304 static inline void host1x_hw_debug_init(struct host1x *host, struct dentry *de) in host1x_hw_debug_init() argument 307 host->debug_op->debug_init(de); in host1x_hw_debug_init()
|
/drivers/staging/media/atomisp/pci/isp/kernels/de/de_1.0/ |
D | ia_css_de.host.c | 47 const struct sh_css_isp_de_params *de, in ia_css_de_dump() argument 50 if (!de) return; in ia_css_de_dump() 53 "de_pixelnoise", de->pixelnoise); in ia_css_de_dump() 56 de->c1_coring_threshold); in ia_css_de_dump() 59 de->c2_coring_threshold); in ia_css_de_dump()
|
D | ia_css_de.host.h | 32 const struct sh_css_isp_de_params *de,
|
/drivers/pnp/isapnp/ |
D | proc.c | 60 struct proc_dir_entry *de, *e; in isapnp_proc_attach_device() local 63 if (!(de = bus->procdir)) { in isapnp_proc_attach_device() 65 de = bus->procdir = proc_mkdir(name, isapnp_proc_bus_dir); in isapnp_proc_attach_device() 66 if (!de) in isapnp_proc_attach_device() 70 e = dev->procent = proc_create_data(name, S_IFREG | S_IRUGO, de, in isapnp_proc_attach_device()
|
/drivers/md/ |
D | dm-snap-persistent.c | 410 struct disk_exception *de = get_exception(ps, ps_area, index); in read_exception() local 413 result->old_chunk = le64_to_cpu(de->old_chunk); in read_exception() 414 result->new_chunk = le64_to_cpu(de->new_chunk); in read_exception() 420 struct disk_exception *de = get_exception(ps, ps->area, index); in write_exception() local 423 de->old_chunk = cpu_to_le64(e->old_chunk); in write_exception() 424 de->new_chunk = cpu_to_le64(e->new_chunk); in write_exception() 429 struct disk_exception *de = get_exception(ps, ps->area, index); in clear_exception() local 432 de->old_chunk = 0; in clear_exception() 433 de->new_chunk = 0; in clear_exception()
|
D | dm-cache-policy-smq.c | 473 struct entry *de; in q_requeue() local 479 for (de = l_head(q->es, q->qs + new_level); de && de->sentinel; de = l_next(q->es, de)) in q_requeue() 482 if (de) { in q_requeue() 483 q_del(q, de); in q_requeue() 484 de->level = e->level; in q_requeue() 488 q_push_before(q, s1, de); in q_requeue() 492 q_push_before(q, s2, de); in q_requeue() 496 q_push(q, de); in q_requeue() 499 q_push(q, de); in q_requeue()
|
/drivers/net/ethernet/socionext/ |
D | netsec.c | 612 struct netsec_de *de = dring->vaddr + DESC_SZ * idx; in netsec_set_rx_de() local 620 de->data_buf_addr_up = upper_32_bits(desc->dma_addr); in netsec_set_rx_de() 621 de->data_buf_addr_lw = lower_32_bits(desc->dma_addr); in netsec_set_rx_de() 622 de->buf_len_info = desc->len; in netsec_set_rx_de() 623 de->attr = attr; in netsec_set_rx_de() 781 struct netsec_de *de; in netsec_set_tx_de() local 784 de = dring->vaddr + (DESC_SZ * idx); in netsec_set_tx_de() 797 de->data_buf_addr_up = upper_32_bits(desc->dma_addr); in netsec_set_tx_de() 798 de->data_buf_addr_lw = lower_32_bits(desc->dma_addr); in netsec_set_tx_de() 799 de->buf_len_info = (tx_ctrl->tcp_seg_len << 16) | desc->len; in netsec_set_tx_de() [all …]
|
/drivers/ipack/devices/ |
D | scc2698.h | 62 u8 de, ctg; /* Start counter timer of block */ member 80 u8 de, r2; /* reserved */ member
|
/drivers/net/can/sja1000/ |
D | Kconfig | 15 (http://www.ems-wuensche.de). 22 EMS Dr. Thomas Wuensche (http://www.ems-wuensche.de). 100 boards from Phytec (http://www.phytec.de) like the PCM027,
|
/drivers/staging/media/atomisp/pci/css_2401_system/hive/ |
D | ia_css_isp_states.c | 126 unsigned int size = binary->info->mem_offsets.offsets.state->vmem.de.size; in ia_css_initialize_de_state() 128 unsigned int offset = binary->info->mem_offsets.offsets.state->vmem.de.offset; in ia_css_initialize_de_state()
|
/drivers/gpu/drm/msm/disp/dpu1/ |
D | dpu_hw_util.h | 139 struct dpu_hw_scaler3_de_cfg de; member 294 struct dpu_drm_de_v1 de; member
|
/drivers/staging/media/atomisp/pci/css_2400_system/hive/ |
D | ia_css_isp_states.c | 126 unsigned int size = binary->info->mem_offsets.offsets.state->vmem.de.size; in ia_css_initialize_de_state() 128 unsigned int offset = binary->info->mem_offsets.offsets.state->vmem.de.offset; in ia_css_initialize_de_state()
|
/drivers/media/radio/si470x/ |
D | radio-si470x-common.c | 119 static unsigned short de = 1; variable 120 module_param(de, ushort, 0444); 121 MODULE_PARM_DESC(de, "De-emphasis: 0=75us *1=50us*"); 383 if (de) in si470x_start()
|
/drivers/staging/most/ |
D | TODO | 8 Christian Gromm <chris@engineersdelight.de>
|
/drivers/staging/media/atomisp/pci/ |
D | ia_css_isp_states.h | 54 struct ia_css_isp_parameter de; member
|
/drivers/net/hamradio/ |
D | Kconfig | 131 information on the modems, see <http://www.baycom.de/> and 149 <http://www.baycom.de/> and 164 the modems, see <http://www.baycom.de/> and the file 179 modems, see <http://www.baycom.de/> and the file
|
/drivers/staging/media/atomisp/ |
D | Makefile | 75 pci/isp/kernels/de/de_1.0/ia_css_de.host.o \ 76 pci/isp/kernels/de/de_2/ia_css_de2.host.o \ 221 -I$(atomisp)/pci/isp/kernels/de/ \ 222 -I$(atomisp)/pci/isp/kernels/de/de_1.0/ \ 223 -I$(atomisp)/pci/isp/kernels/de/de_2/ \
|
/drivers/media/usb/uvc/ |
D | Kconfig | 10 For more information see: <http://linux-uvc.berlios.de/>
|
/drivers/gpu/drm/arm/ |
D | malidp_hw.c | 1174 const struct malidp_irq_map *de; in malidp_de_irq() local 1180 de = &hw->map.de_irq_map; in malidp_de_irq() 1206 if (!(status & de->irq_mask)) in malidp_de_irq() 1211 status &= (mask | de->err_mask); in malidp_de_irq() 1212 if ((status & de->vsync_irq) && malidp->crtc.enabled) in malidp_de_irq() 1216 if (status & de->err_mask) { in malidp_de_irq()
|