Searched defs:od (Results 1 - 14 of 14) sorted by relevance

/drivers/scsi/libsas/
H A Dsas_host_smp.c56 * to_sas_gpio_gp_bit - given the gpio frame data find the byte/bit position of 'od'
57 * @od: od bit to find
61 * @bit: bit position of 'od' in the returned byte
63 * returns NULL if 'od' is not in 'data'
73 * although 'od' is renamed 'id' for 'input data'.
75 * SFF-8489 defines the behavior of the LEDs in response to the 'od' values.
77 static u8 *to_sas_gpio_gp_bit(unsigned int od, u8 *data, u8 index, u8 count, u8 *bit) argument
87 if (od < index * 32)
90 od
103 try_test_sas_gpio_gp_bit(unsigned int od, u8 *data, u8 index, u8 count) argument
[all...]
/drivers/staging/lustre/lustre/osc/
H A Dosc_dev.c204 struct osc_device *od = lu2osc_dev(d); local
207 OBD_FREE_PTR(od);
216 struct osc_device *od; local
220 OBD_ALLOC_PTR(od);
221 if (od == NULL)
224 cl_device_init(&od->od_cl, t);
225 d = osc2lu_dev(od);
227 od->od_cl.cd_ops = &osc_cl_ops;
237 od->od_exp = obd->obd_self_export;
H A Dlproc_osc.c426 struct osc_device *od = obd2osc_dev(obd); local
428 return seq_printf(m, "%u\n", od->od_contention_time);
435 struct osc_device *od = obd2osc_dev(obd); local
437 return lprocfs_write_helper(buffer, count, &od->od_contention_time) ?:
445 struct osc_device *od = obd2osc_dev(obd); local
447 return seq_printf(m, "%u\n", od->od_lockless_truncate);
454 struct osc_device *od = obd2osc_dev(obd); local
456 return lprocfs_write_helper(buffer, count, &od->od_lockless_truncate) ?:
/drivers/block/paride/
H A Dbpck.c350 { int i,j,k,n,p,v,f, om, od; local
354 om = pi->mode; od = pi->delay;
397 pi->mode = om; pi->delay = od;
/drivers/scsi/osd/
H A Dosd_uld.c87 struct osd_dev od; member in struct:osd_uld_device
93 struct osd_dev od; member in struct:osd_dev_handle
203 ret = do_test(&oud->od, cmd, arg);
248 odh->od = oud->od;
252 return &odh->od;
310 odh->od = oud->od;
313 return &odh->od;
320 void osduld_put_device(struct osd_dev *od) argument
345 osduld_device_info(struct osd_dev *od) argument
353 osduld_device_same(struct osd_dev *od, const struct osd_dev_info *odi) argument
[all...]
H A Dosd_initiator.c79 static int _osd_get_print_system_info(struct osd_dev *od, argument
101 or = osd_start_request(od, GFP_KERNEL);
201 int osd_auto_detect_ver(struct osd_dev *od, argument
207 ret = _osd_get_print_system_info(od, caps, odi);
209 osd_dev_set_ver(od, OSD_VER1);
211 ret = _osd_get_print_system_info(od, caps, odi);
2001 cap->od.obj_desc.policy_access_tag = 0;
2002 cap->od.obj_desc.allowed_partition_id = cpu_to_be64(obj->partition);
2003 cap->od.obj_desc.allowed_object_id = cpu_to_be64(obj->id);
/drivers/usb/serial/
H A Domninet.c109 struct omninet_data *od; local
111 od = kzalloc(sizeof(*od), GFP_KERNEL);
112 if (!od)
115 usb_set_serial_port_data(port, od);
122 struct omninet_data *od; local
124 od = usb_get_serial_port_data(port);
125 kfree(od);
168 struct omninet_data *od = usb_get_serial_port_data(port); local
192 header->oh_seq = od
[all...]
/drivers/cpufreq/
H A Dcpufreq_ondemand.c428 show_store_one(od, sampling_rate);
429 show_store_one(od, io_is_busy);
430 show_store_one(od, up_threshold);
431 show_store_one(od, sampling_down_factor);
432 show_store_one(od, ignore_nice_load);
433 show_store_one(od, powersave_bias);
434 declare_show_sampling_rate_min(od); variable
/drivers/clk/sirf/
H A Dclk-common.c84 /* fout = fin * nf / nr / od */
88 u32 od = ((cfg0 >> 19) & (BIT(4) - 1)) + 1; local
90 return fin / MHZ * nf / nr / od * MHZ;
97 unsigned long fin, nf, nr, od; local
101 * fout = fin * nf / (nr * od);
102 * set od = 1, nr = fin/MHz, so fout = nf * MHz
117 od = 1;
120 do_div(dividend, nr * od);
129 unsigned long fin, nf, nr, od, reg; local
132 * fout = fin * nf / (nr * od);
[all...]
/drivers/dma/
H A Dbcm2835-dma.c537 static void bcm2835_dma_free(struct bcm2835_dmadev *od) argument
541 list_for_each_entry_safe(c, next, &od->ddev.channels,
584 struct bcm2835_dmadev *od; local
599 od = devm_kzalloc(&pdev->dev, sizeof(*od), GFP_KERNEL);
600 if (!od)
603 pdev->dev.dma_parms = &od->dma_parms;
611 od->base = base;
613 dma_cap_set(DMA_SLAVE, od->ddev.cap_mask);
614 dma_cap_set(DMA_PRIVATE, od
684 struct bcm2835_dmadev *od = platform_get_drvdata(pdev); local
[all...]
H A Domap-dma.c222 static void omap_dma_glbl_write(struct omap_dmadev *od, unsigned reg, unsigned val) argument
224 const struct omap_dma_reg *r = od->reg_map + reg;
228 omap_dma_write(val, r->type, od->base + r->offset);
231 static unsigned omap_dma_glbl_read(struct omap_dmadev *od, unsigned reg) argument
233 const struct omap_dma_reg *r = od->reg_map + reg;
237 return omap_dma_read(r->type, od->base + r->offset);
272 static void omap_dma_assign(struct omap_dmadev *od, struct omap_chan *c, argument
275 c->channel_base = od->base + od->plat->channel_stride * lch;
277 od
282 struct omap_dmadev *od = to_omap_dma_dev(c->vc.chan.device); local
300 struct omap_dmadev *od = to_omap_dma_dev(c->vc.chan.device); local
482 struct omap_dmadev *od = devid; local
522 struct omap_dmadev *od = to_omap_dma_dev(chan->device); local
576 struct omap_dmadev *od = to_omap_dma_dev(chan->device); local
633 struct omap_dmadev *od = to_omap_dma_dev(c->vc.chan.device); local
645 struct omap_dmadev *od = to_omap_dma_dev(c->vc.chan.device); local
671 struct omap_dmadev *od = to_omap_dma_dev(c->vc.chan.device); local
760 struct omap_dmadev *od = to_omap_dma_dev(chan->device); local
858 struct omap_dmadev *od = to_omap_dma_dev(chan->device); local
1063 omap_dma_chan_init(struct omap_dmadev *od, int dma_sig) argument
1082 omap_dma_free(struct omap_dmadev *od) argument
1114 struct omap_dmadev *od; local
1204 struct omap_dmadev *od = platform_get_drvdata(pdev); local
[all...]
/drivers/video/fbdev/msm/
H A Dmdp_ppp.c219 uint64_t n, d, os, os_p, od, od_p, oreq; local
253 od = tmp - ONE_HALF;
256 od = (((k3 * os) >> 1) + k4);
259 od_p = od & INT_MASK;
260 if (od_p != od)
/drivers/pinctrl/
H A Dpinctrl-st.c107 *[25] | od | |
232 struct regmap_field *alt, *oe, *pu, *od; member in struct:st_pio_control
247 const int alt, oe, pu, od, rt; member in struct:st_pctl_data
352 .alt = 0, .oe = 5, .pu = 7, .od = 9, .rt = 16,
357 .alt = 0, .oe = 8, .pu = 10, .od = 12, .rt = 16,
362 .alt = 0, .oe = 6, .pu = 8, .od = 10, .rt = 38,
367 .alt = 0, .oe = 3, .pu = 4, .od = 5, .rt = 6,
372 .alt = 0, .oe = 5, .pu = 7, .od = 9, .rt = 11,
385 .alt = 0, .oe = 40, .pu = 50, .od = 60, .rt = 100,
397 .od
[all...]
/drivers/video/console/
H A Dfbcon.c2547 struct display *od = &fb_display[con]; local
2550 if (od->fontdata == f->data)
2552 return fbcon_do_set_font(vc, f->width, f->height, od->fontdata, od->userfont);

Completed in 302 milliseconds