Searched defs:el (Results 1 - 13 of 13) sorted by relevance

/drivers/mtd/devices/
H A Ddocecc.c189 int deg_lambda, el, deg_omega; local
289 el = no_eras;
312 if (2 * el <= r + no_eras - 1) {
313 el = r + no_eras - el;
/drivers/input/misc/
H A Dyealink.c144 static int setChar(struct yealink_dev *yld, int el, int chr) argument
148 if (el >= ARRAY_SIZE(lcdMap))
154 yld->lcdMap[el] = chr;
156 if (lcdMap[el].type == '.') {
157 a = lcdMap[el].u.p.a;
158 m = lcdMap[el].u.p.m;
168 m = lcdMap[el].u.s[i].m;
173 a = lcdMap[el].u.s[i].a;
638 int el, size_t len)
653 setChar(yld, el
637 store_line(struct device *dev, const char *buf, size_t count, int el, size_t len) argument
[all...]
/drivers/net/wireless/ath/ath9k/
H A Deeprom_4k.c194 u32 sum = 0, el; local
232 el = swab16(ah->eeprom.map4k.baseEepHeader.length);
234 el = ah->eeprom.map4k.baseEepHeader.length;
236 if (el > sizeof(struct ar5416_eeprom_4k))
237 el = sizeof(struct ar5416_eeprom_4k) / sizeof(u16);
239 el = el / sizeof(u16);
243 for (i = 0; i < el; i++)
H A Deeprom_9287.c185 u32 sum = 0, el, integer; local
225 el = swab16(ah->eeprom.map9287.baseEepHeader.length);
227 el = ah->eeprom.map9287.baseEepHeader.length;
229 if (el > sizeof(struct ar9287_eeprom))
230 el = sizeof(struct ar9287_eeprom) / sizeof(u16);
232 el = el / sizeof(u16);
236 for (i = 0; i < el; i++)
H A Deeprom_def.c271 u32 sum = 0, el; local
308 el = swab16(ah->eeprom.def.baseEepHeader.length);
310 el = ah->eeprom.def.baseEepHeader.length;
312 if (el > sizeof(struct ar5416_eeprom_def))
313 el = sizeof(struct ar5416_eeprom_def) / sizeof(u16);
315 el = el / sizeof(u16);
319 for (i = 0; i < el; i++)
/drivers/staging/iio/
H A Dindustrialio-core.c183 struct iio_detected_event_list *el; local
184 size_t len = sizeof(el->ev);
207 el = list_first_entry(&ev_int->det_events,
210 if (copy_to_user(buf, &(el->ev), len)) {
214 list_del(&el->list);
217 kfree(el);
231 struct iio_detected_event_list *el, *t; local
240 list_for_each_entry_safe(el, t, &ev_int->det_events, list) {
241 list_del(&el->list);
242 kfree(el);
[all...]
/drivers/isdn/act2000/
H A Dcapi.h267 actcapi_infoel el; member in struct:actcapi_msg::__anon1088::info_ind
/drivers/net/wireless/brcm80211/brcmfmac/
H A Dwl_cfg80211.h252 struct brcmf_cfg80211_iscan_eloop el; member in struct:brcmf_cfg80211_iscan_ctrl
284 struct brcmf_cfg80211_event_loop el; /* main event loop */ member in struct:brcmf_cfg80211_priv
H A Dwl_cfg80211.c2408 struct brcmf_cfg80211_iscan_eloop *el = &iscan->el; local
2421 el->handler[status](cfg_priv);
2448 static void brcmf_init_iscan_eloop(struct brcmf_cfg80211_iscan_eloop *el) argument
2450 memset(el, 0, sizeof(*el));
2451 el->handler[BRCMF_SCAN_RESULTS_SUCCESS] = brcmf_iscan_done;
2452 el->handler[BRCMF_SCAN_RESULTS_PARTIAL] = brcmf_iscan_inprogress;
2453 el->handler[BRCMF_SCAN_RESULTS_PENDING] = brcmf_iscan_pending;
2454 el
3206 brcmf_init_eloop_handler(struct brcmf_cfg80211_event_loop *el) argument
[all...]
/drivers/block/drbd/
H A Ddrbd_bitmap.c1363 * then assign full words up to the last long boundary (el),
1371 unsigned long el = (e+1) & ~((unsigned long)BITS_PER_LONG-1); local
1379 /* don't bother; el and sl may even be wrong. */
1386 /* difference is large enough that we can trust sl and el */
1395 last_page = el >> (3 + PAGE_SHIFT);
1412 last_word = MLPP(el >> LN2_BPL);
1416 * example: (e & 63) == 63, el will be e+1.
1420 if (el <= e)
1421 __bm_change_bits_to(mdev, el, e, 1);
/drivers/net/wireless/
H A Dwl3501_cs.c175 struct iw_mgmt_info_element *el,
178 el->id = id;
179 el->len = len;
180 memcpy(el->data, value, len);
583 .el = {
602 .el = {
609 .el = {
621 .el = {
633 .el = {
643 iw_copy_mgmt_info_element(&sig.ssid.el,
174 iw_set_mgmt_info_element(enum iw_mgmt_info_element_ids id, struct iw_mgmt_info_element *el, void *value, int len) argument
[all...]
H A Dwl3501.h237 struct iw_mgmt_info_element el; member in struct:iw_mgmt_essid_pset
248 struct iw_mgmt_info_element el; member in struct:iw_mgmt_data_rset
253 struct iw_mgmt_info_element el; member in struct:iw_mgmt_ds_pset
258 struct iw_mgmt_info_element el; member in struct:iw_mgmt_cf_pset
266 struct iw_mgmt_info_element el; member in struct:iw_mgmt_ibss_pset
/drivers/scsi/aic94xx/
H A Daic94xx_sds.c734 struct asd_ll_el *el = start; local
739 if (el->id1 == id1)
741 if (el->id0 == id0)
742 return el;
744 el = start + le16_to_cpu(el->next);
745 } while (el != start);
986 struct asd_ll_el *el; local
1013 el = kmalloc(size, GFP_KERNEL);
1014 if (!el) {
[all...]

Completed in 189 milliseconds