/linux-4.1.27/drivers/regulator/ |
D | max8997.c | 142 int rid = rdev_get_id(rdev); in max8997_list_voltage_charger_cv() local 144 if (rid != MAX8997_CHARGER_CV) in max8997_list_voltage_charger_cv() 165 int rid = rdev_get_id(rdev); in max8997_list_voltage() local 168 if (rid >= ARRAY_SIZE(reg_voltage_map) || in max8997_list_voltage() 169 rid < 0) in max8997_list_voltage() 172 desc = reg_voltage_map[rid]; in max8997_list_voltage() 186 int rid = rdev_get_id(rdev); in max8997_get_enable_register() local 188 switch (rid) { in max8997_get_enable_register() 190 *reg = MAX8997_REG_LDO1CTRL + (rid - MAX8997_LDO1); in max8997_get_enable_register() 231 *mask = 0x01 << (rid - MAX8997_EN32KHZ_AP); in max8997_get_enable_register() [all …]
|
D | tps6507x-regulator.c | 217 int data, rid = rdev_get_id(dev); in tps6507x_pmic_is_enabled() local 220 if (rid < TPS6507X_DCDC_1 || rid > TPS6507X_LDO_2) in tps6507x_pmic_is_enabled() 223 shift = TPS6507X_MAX_REG_ID - rid; in tps6507x_pmic_is_enabled() 235 int rid = rdev_get_id(dev); in tps6507x_pmic_enable() local 238 if (rid < TPS6507X_DCDC_1 || rid > TPS6507X_LDO_2) in tps6507x_pmic_enable() 241 shift = TPS6507X_MAX_REG_ID - rid; in tps6507x_pmic_enable() 248 int rid = rdev_get_id(dev); in tps6507x_pmic_disable() local 251 if (rid < TPS6507X_DCDC_1 || rid > TPS6507X_LDO_2) in tps6507x_pmic_disable() 254 shift = TPS6507X_MAX_REG_ID - rid; in tps6507x_pmic_disable() 262 int data, rid = rdev_get_id(dev); in tps6507x_pmic_get_voltage_sel() local [all …]
|
D | tps65217-regulator.c | 74 int rid = rdev_get_id(dev); in tps65217_pmic_enable() local 76 if (rid < TPS65217_DCDC_1 || rid > TPS65217_LDO_4) in tps65217_pmic_enable() 88 int rid = rdev_get_id(dev); in tps65217_pmic_disable() local 90 if (rid < TPS65217_DCDC_1 || rid > TPS65217_LDO_4) in tps65217_pmic_disable() 103 unsigned int rid = rdev_get_id(dev); in tps65217_pmic_set_voltage_sel() local 110 switch (rid) { in tps65217_pmic_set_voltage_sel()
|
D | rn5t618-regulator.c | 31 #define REG(rid, ereg, emask, vreg, vmask, min, max, step) \ argument 32 [RN5T618_##rid] = { \ 33 .name = #rid, \ 34 .of_match = of_match_ptr(#rid), \ 36 .id = RN5T618_##rid, \
|
D | tps65218-regulator.c | 108 unsigned int rid = rdev_get_id(dev); in tps65218_pmic_set_voltage_sel() local 115 switch (rid) { in tps65218_pmic_set_voltage_sel() 131 int rid = rdev_get_id(dev); in tps65218_pmic_enable() local 133 if (rid < TPS65218_DCDC_1 || rid > TPS65218_LDO_1) in tps65218_pmic_enable() 145 int rid = rdev_get_id(dev); in tps65218_pmic_disable() local 147 if (rid < TPS65218_DCDC_1 || rid > TPS65218_LDO_1) in tps65218_pmic_disable()
|
D | max14577.c | 27 int rid = rdev_get_id(rdev); in max14577_reg_is_enabled() local 31 switch (rid) { in max14577_reg_is_enabled()
|
D | lp872x.c | 225 enum lp872x_regulator_id rid = rdev_get_id(rdev); in lp872x_regulator_enable_time() local 233 switch (rid) { in lp872x_regulator_enable_time() 235 addr = LP872X_LDO1_VOUT + rid; in lp872x_regulator_enable_time() 238 addr = LP872X_LDO1_VOUT + rid - LP8725_ID_BASE; in lp872x_regulator_enable_time()
|
/linux-4.1.27/drivers/net/wireless/orinoco/ |
D | hermes.h | 388 int (*read_ltv)(struct hermes *hw, int bap, u16 rid, unsigned buflen, 390 int (*write_ltv)(struct hermes *hw, int bap, u16 rid, 460 static inline int hermes_inquire(struct hermes *hw, u16 rid) in hermes_inquire() argument 462 return hw->ops->cmd_wait(hw, HERMES_CMD_INQUIRE, rid, NULL); in hermes_inquire() 496 #define HERMES_READ_RECORD(hw, bap, rid, buf) \ argument 497 (hw->ops->read_ltv((hw), (bap), (rid), sizeof(*buf), NULL, (buf))) 498 #define HERMES_WRITE_RECORD(hw, bap, rid, buf) \ argument 499 (hw->ops->write_ltv((hw), (bap), (rid), \ 502 static inline int hermes_read_wordrec(struct hermes *hw, int bap, u16 rid, in hermes_read_wordrec() argument 508 err = HERMES_READ_RECORD(hw, bap, rid, &rec); in hermes_read_wordrec() [all …]
|
D | hermes.c | 481 static int hermes_read_ltv(struct hermes *hw, int bap, u16 rid, in hermes_read_ltv() argument 492 err = hermes_docmd_wait(hw, HERMES_CMD_ACCESS, rid, NULL); in hermes_read_ltv() 496 err = hermes_bap_seek(hw, bap, rid, 0); in hermes_read_ltv() 510 if (rtype != rid) in hermes_read_ltv() 513 hw->iobase, __func__, rid, rtype); in hermes_read_ltv() 518 HERMES_RECLEN_TO_BYTES(rlength), bufsize, rid, rlength); in hermes_read_ltv() 526 static int hermes_write_ltv(struct hermes *hw, int bap, u16 rid, in hermes_write_ltv() argument 536 err = hermes_bap_seek(hw, bap, rid, 0); in hermes_write_ltv() 541 hermes_write_reg(hw, dreg, rid); in hermes_write_ltv() 548 rid, NULL); in hermes_write_ltv()
|
D | orinoco_usb.c | 729 static int ezusb_fill_req(struct ezusb_packet *req, u16 length, u16 rid, in ezusb_fill_req() argument 743 req->hermes_rid = cpu_to_le16(rid); in ezusb_fill_req() 950 static int ezusb_write_ltv(struct hermes *hw, int bap, u16 rid, in ezusb_write_ltv() argument 967 ctx = ezusb_alloc_ctx(upriv, rid, EZUSB_RID_ACK); in ezusb_write_ltv() 971 if (rid == EZUSB_RID_TX) in ezusb_write_ltv() 980 static int ezusb_read_ltv(struct hermes *hw, int bap, u16 rid, in ezusb_read_ltv() argument 989 ctx = ezusb_alloc_ctx(upriv, rid, rid); in ezusb_read_ltv()
|
D | wext.c | 1273 int rid = data->flags; in orinoco_ioctl_getrid() local 1283 if (rid < 0xfc00 || rid > 0xffff) in orinoco_ioctl_getrid() 1289 err = hw->ops->read_ltv(hw, USER_BAP, rid, MAX_RID_LEN, &length, in orinoco_ioctl_getrid()
|
D | hw.c | 1134 u16 rid; in orinoco_hw_get_essid() local 1138 rid = (priv->port_type == 3) ? HERMES_RID_CNFOWNSSID : in orinoco_hw_get_essid() 1141 err = hw->ops->read_ltv(hw, USER_BAP, rid, sizeof(essidbuf), in orinoco_hw_get_essid()
|
/linux-4.1.27/drivers/scsi/qla2xxx/ |
D | qla_mid.c | 633 uint8_t vp_idx, uint16_t rid, int rsp_que, uint8_t qos) in qla25xx_create_req_que() argument 673 req->rid = rid; in qla25xx_create_req_que() 679 que_id, req->rid, req->vp_idx, req->qos); in qla25xx_create_req_que() 682 que_id, req->rid, req->vp_idx, req->qos); in qla25xx_create_req_que() 688 if (MSB(req->rid)) in qla25xx_create_req_que() 691 if (LSB(req->rid)) in qla25xx_create_req_que() 758 uint8_t vp_idx, uint16_t rid, int req) in qla25xx_create_rsp_que() argument 800 rsp->rid = rid; in qla25xx_create_rsp_que() 805 que_id, rsp->rid, rsp->vp_idx, rsp->hw); in qla25xx_create_rsp_que() 807 if (MSB(rsp->rid)) in qla25xx_create_rsp_que() [all …]
|
D | qla_init.c | 2097 uint16_t rid = 0; in qla24xx_config_rings() local 2124 icb->rid = __constant_cpu_to_le16(rid); in qla24xx_config_rings() 2133 if (MSB(rid)) in qla24xx_config_rings() 2137 if (LSB(rid)) in qla24xx_config_rings()
|
D | qla_fw.h | 381 uint16_t rid; member
|
D | qla_def.h | 2818 uint16_t rid; member 2846 uint16_t rid; member
|
D | qla_mbx.c | 3807 mcp->mb[13] = req->rid; in qla25xx_init_req_que() 3873 mcp->mb[13] = rsp->rid; in qla25xx_init_rsp_que()
|
/linux-4.1.27/Documentation/devicetree/ |
D | todo.txt | 7 - Switch to RCU for tree updates and get rid of global spinlock 10 - pseries: Get rid of open-coded tree modification from arch/powerpc/platforms/pseries/dlpar.c
|
/linux-4.1.27/drivers/staging/wlan-ng/ |
D | hfa384x_usb.c | 240 u16 rid, 248 u16 rid, 649 result->rid = le16_to_cpu(rridresp->rid); in usbctlx_get_rridresult() 711 rridresult.rid, in usbctlx_rrid_completor_fn() 849 rridresult.rid = le16_to_cpu(ctlx->outbuf.rridreq.rid); in hfa384x_cb_rrid() 873 hfa384x_dorrid_wait(hfa384x_t *hw, u16 rid, void *riddata, in hfa384x_dorrid_wait() argument 877 rid, riddata, riddatalen, NULL, NULL, NULL); in hfa384x_dorrid_wait() 882 u16 rid, void *riddata, unsigned int riddatalen, in hfa384x_dorrid_async() argument 887 rid, riddata, riddatalen, in hfa384x_dorrid_async() 892 hfa384x_dowrid_wait(hfa384x_t *hw, u16 rid, void *riddata, in hfa384x_dowrid_wait() argument [all …]
|
D | hfa384x.h | 803 u16 rid; member 810 u16 rid; member 856 u16 rid; member 1133 u16 rid; member 1369 int hfa384x_drvr_getconfig(hfa384x_t *hw, u16 rid, void *buf, u16 len); 1374 int hfa384x_drvr_setconfig(hfa384x_t *hw, u16 rid, void *buf, u16 len); 1376 static inline int hfa384x_drvr_getconfig16(hfa384x_t *hw, u16 rid, void *val) in hfa384x_drvr_getconfig16() argument 1380 result = hfa384x_drvr_getconfig(hw, rid, val, sizeof(u16)); in hfa384x_drvr_getconfig16() 1386 static inline int hfa384x_drvr_setconfig16(hfa384x_t *hw, u16 rid, u16 val) in hfa384x_drvr_setconfig16() argument 1390 return hfa384x_drvr_setconfig(hw, rid, &value, sizeof(value)); in hfa384x_drvr_setconfig16() [all …]
|
/linux-4.1.27/arch/ia64/include/asm/ |
D | mmu_context.h | 133 unsigned long rid; in reload_context() local 138 rid = context << 3; /* make space for encoding the region number */ in reload_context() 142 rr0 = (rid << 8) | (PAGE_SHIFT << 2) | 1; in reload_context()
|
D | processor.h | 182 __u64 rid : 24; /* region id */ member
|
/linux-4.1.27/drivers/dma/ioat/ |
D | dca.c | 114 u16 rid; /* requester id, as used by IOAT */ member 160 ioatdca->req_slots[i].rid = id; in ioat_dca_add_requester() 187 ioatdca->req_slots[i].rid = 0; in ioat_dca_remove_requester() 333 ioatdca->req_slots[i].rid = id; in ioat2_dca_add_requester() 364 ioatdca->req_slots[i].rid = 0; in ioat2_dca_remove_requester() 509 ioatdca->req_slots[i].rid = id; in ioat3_dca_add_requester() 540 ioatdca->req_slots[i].rid = 0; in ioat3_dca_remove_requester()
|
/linux-4.1.27/drivers/staging/slicoss/ |
D | TODO | 14 - get rid of ASSERT(), use BUG() instead but only where necessary 28 - get rid of slic_spinlock wrapper
|
/linux-4.1.27/drivers/net/wireless/hostap/ |
D | hostap.h | 22 int hostap_set_word(struct net_device *dev, int rid, u16 val); 23 int hostap_set_string(struct net_device *dev, int rid, const char *val);
|
D | hostap_common.h | 352 offsetof(struct prism2_hostapd_param, u.rid.data) 387 u16 rid; member 390 } rid; member
|
D | hostap_hw.c | 801 static int hfa384x_get_rid(struct net_device *dev, u16 rid, void *buf, int len, in hfa384x_get_rid() argument 814 "f/w\n", dev->name, rid, len); in hfa384x_get_rid() 827 res = hfa384x_cmd(dev, HFA384X_CMDCODE_ACCESS, rid, NULL, NULL); in hfa384x_get_rid() 831 dev->name, res, rid, len); in hfa384x_get_rid() 838 res = hfa384x_setup_bap(dev, BAP0, rid, 0); in hfa384x_get_rid() 851 dev->name, rid, rlen, len); in hfa384x_get_rid() 864 "len=%d) - failed - res=%d\n", dev->name, rid, in hfa384x_get_rid() 875 static int hfa384x_set_rid(struct net_device *dev, u16 rid, void *buf, int len) in hfa384x_set_rid() argument 887 "f/w\n", dev->name, rid, len); in hfa384x_set_rid() 896 rec.rid = cpu_to_le16(rid); in hfa384x_set_rid() [all …]
|
D | hostap_wlan.h | 137 __le16 rid; member 587 int (*get_rid)(struct net_device *dev, u16 rid, void *buf, int len, 589 int (*set_rid)(struct net_device *dev, u16 rid, void *buf, int len);
|
D | hostap_ioctl.c | 2990 int rid = *i; in prism2_ioctl_priv_set_rid_word() local 2993 printk(KERN_DEBUG "%s: Set RID[0x%X] = %d\n", dev->name, rid, value); in prism2_ioctl_priv_set_rid_word() 2995 if (hostap_set_word(dev, rid, value)) in prism2_ioctl_priv_set_rid_word() 3645 res = local->func->get_rid(local->dev, param->u.rid.rid, in prism2_ioctl_get_rid() 3646 param->u.rid.data, param->u.rid.len, 0); in prism2_ioctl_get_rid() 3648 param->u.rid.len = res; in prism2_ioctl_get_rid() 3663 if (max_len < 0 || max_len < param->u.rid.len) in prism2_ioctl_set_rid() 3666 return local->func->set_rid(local->dev, param->u.rid.rid, in prism2_ioctl_set_rid() 3667 param->u.rid.data, param->u.rid.len); in prism2_ioctl_set_rid()
|
D | hostap_main.c | 287 int hostap_set_word(struct net_device *dev, int rid, u16 val) in hostap_set_word() argument 292 return iface->local->func->set_rid(dev, rid, &tmp, 2); in hostap_set_word() 296 int hostap_set_string(struct net_device *dev, int rid, const char *val) in hostap_set_string() argument 310 return iface->local->func->set_rid(dev, rid, &buf, MAX_SSID_LEN + 2); in hostap_set_string()
|
/linux-4.1.27/arch/powerpc/platforms/powernv/ |
D | pci-ioda.c | 71 (pe->rid & 0xff00) >> 8, in pe_level_printk() 72 PCI_SLOT(pe->rid), PCI_FUNC(pe->rid)); in pe_level_printk() 672 long rid_end, rid; in pnv_ioda_deconfigure_pe() local 699 rid_end = pe->rid + (count << 8); in pnv_ioda_deconfigure_pe() 708 rid_end = pe->rid + 1; in pnv_ioda_deconfigure_pe() 712 for (rid = pe->rid; rid < rid_end; rid++) in pnv_ioda_deconfigure_pe() 713 phb->ioda.pe_rmap[rid] = 0; in pnv_ioda_deconfigure_pe() 734 rc = opal_pci_set_pe(phb->opal_id, pe->pe_number, pe->rid, in pnv_ioda_deconfigure_pe() 751 long rc, rid_end, rid; in pnv_ioda_configure_pe() local 778 rid_end = pe->rid + (count << 8); in pnv_ioda_configure_pe() [all …]
|
D | pci.h | 47 unsigned int rid; member
|
D | pci.c | 679 if (pe->rid == ((pdev->bus->number << 8) | in pnv_pci_dma_dev_setup()
|
/linux-4.1.27/drivers/net/wireless/ |
D | zd1201.c | 414 static int zd1201_getconfig(struct zd1201 *zd, int rid, void *riddata, in zd1201_getconfig() argument 425 err = zd1201_docmd(zd, ZD1201_CMDCODE_ACCESS, rid, 0, 0); in zd1201_getconfig() 440 if ((code & ZD1201_ACCESSBIT) != ZD1201_ACCESSBIT || rid_fid != rid ) in zd1201_getconfig() 446 riddatalen, zd->rxlen, length, rid, rid_fid); in zd1201_getconfig() 452 err = zd1201_docmd(zd, ZD1201_CMDCODE_SETRXRID, rid, 0, length); in zd1201_getconfig() 514 static int zd1201_setconfig(struct zd1201 *zd, int rid, void *buf, int len, int wait) in zd1201_setconfig() argument 545 *(__le16*)&request[6] = cpu_to_le16(rid); in zd1201_setconfig() 573 *((__le16*)&request[6]) = cpu_to_le16(rid); in zd1201_setconfig() 584 if (!zd->rxlen || le16_to_cpu(*(__le16*)&zd->rxdata[6]) != rid) { in zd1201_setconfig() 596 static inline int zd1201_getconfig16(struct zd1201 *zd, int rid, short *val) in zd1201_getconfig16() argument [all …]
|
D | airo.c | 978 unsigned int rid: 16; member 1113 static int bap_setup(struct airo_info*, u16 rid, u16 offset, int whichbap); 1120 static int PC4500_accessrid(struct airo_info*, u16 rid, u16 accmd); 1121 static int PC4500_readrid(struct airo_info*, u16 rid, void *pBuf, int len, int lock); 1122 static int PC4500_writerid(struct airo_info*, u16 rid, const void 1124 static int do_writerid( struct airo_info*, u16 rid, const void *rid_data, 1865 static int readStatsRid(struct airo_info*ai, StatsRid *sr, int rid, int lock) in readStatsRid() argument 1867 return PC4500_readrid(ai, rid, sr, sizeof(*sr), lock); in readStatsRid() 2627 ai->config_desc.rid_desc.rid = 0; in mpi_map_card() 3984 static int bap_setup(struct airo_info *ai, u16 rid, u16 offset, int whichbap ) in bap_setup() argument [all …]
|
/linux-4.1.27/drivers/misc/vmw_vmci/ |
D | vmci_resource.c | 55 u32 rid = r->handle.resource; in vmci_resource_lookup() local 58 rid == handle.resource && in vmci_resource_lookup()
|
/linux-4.1.27/drivers/net/ethernet/brocade/bna/ |
D | bna_tx_rx.c | 283 bfi_msgq_mhdr_set(req->mh, BFI_MC_ENET, req_type, 0, rxf->rx->rid); in bna_bfi_ucast_req() 299 0, rxf->rx->rid); in bna_bfi_mcast_add_req() 315 0, rxf->rx->rid); in bna_bfi_mcast_del_req() 330 BFI_ENET_H2I_MAC_MCAST_FILTER_REQ, 0, rxf->rx->rid); in bna_bfi_mcast_filter_req() 345 BFI_ENET_H2I_RX_PROMISCUOUS_REQ, 0, rxf->rx->rid); in bna_bfi_rx_promisc_req() 362 BFI_ENET_H2I_RX_VLAN_SET_REQ, 0, rxf->rx->rid); in bna_bfi_rx_vlan_filter_set() 385 BFI_ENET_H2I_RX_VLAN_STRIP_ENABLE_REQ, 0, rxf->rx->rid); in bna_bfi_vlan_strip_enable() 400 BFI_ENET_H2I_RIT_CFG_REQ, 0, rxf->rx->rid); in bna_bfi_rit_cfg() 417 BFI_ENET_H2I_RSS_CFG_REQ, 0, rxf->rx->rid); in bna_bfi_rss_cfg() 436 BFI_ENET_H2I_RSS_ENABLE_REQ, 0, rxf->rx->rid); in bna_bfi_rss_enable() [all …]
|
D | bna_types.h | 478 int rid; member 801 int rid; member
|
D | bna.h | 336 if (__tx->rid == (_rid)) { \ 351 if (__rx->rid == (_rid)) { \
|
/linux-4.1.27/drivers/staging/xgifb/ |
D | TODO | 10 - get rid of non-linux related stuff
|
/linux-4.1.27/arch/cris/boot/rescue/ |
D | rescue_v32.lds | 37 /* Get rid of stuff from EXPORT_SYMBOL(foo). */
|
/linux-4.1.27/include/net/ |
D | inetpeer.h | 51 atomic_t rid; /* Frag reception counter */ member
|
/linux-4.1.27/net/ipv4/ |
D | ip_fragment.c | 79 unsigned int rid; member 270 start = qp->rid; in ip_frag_too_far() 271 end = atomic_inc_return(&peer->rid); in ip_frag_too_far() 272 qp->rid = end; in ip_frag_too_far()
|
D | inetpeer.c | 464 atomic_set(&p->rid, 0); in inet_getpeer()
|
/linux-4.1.27/drivers/staging/media/davinci_vpfe/ |
D | TODO | 10 - Get rid of the dm365_ipipe_hw.[ch] layer
|
/linux-4.1.27/arch/powerpc/mm/ |
D | tlb_nohash.c | 416 unsigned long rid = (address & rmask) | 0x1000000000000000ul; in tlb_flush_pgtable() local 424 vpte |= rid; in tlb_flush_pgtable()
|
/linux-4.1.27/arch/mips/pci/ |
D | ops-tx3927.c | 148 tx3927_pcicptr->rid, in tx3927_pcic_setup()
|
/linux-4.1.27/drivers/message/fusion/ |
D | mptfc.c | 404 mptfc_generate_rport_ids(FCDevicePage0_t *pg0, struct fc_rport_identifiers *rid) in mptfc_generate_rport_ids() argument 421 rid->node_name = ((u64)pg0->WWNN.High) << 32 | (u64)pg0->WWNN.Low; in mptfc_generate_rport_ids() 422 rid->port_name = ((u64)pg0->WWPN.High) << 32 | (u64)pg0->WWPN.Low; in mptfc_generate_rport_ids() 423 rid->port_id = pg0->PortIdentifier; in mptfc_generate_rport_ids() 424 rid->roles = FC_RPORT_ROLE_UNKNOWN; in mptfc_generate_rport_ids()
|
/linux-4.1.27/Documentation/sound/alsa/soc/ |
D | pops_clicks.txt | 35 Capture artifacts are somewhat easier to get rid as we can delay activating the
|
/linux-4.1.27/Documentation/dvb/ |
D | technisat.txt | 21 get rid of unnecessary modules and check this one:
|
/linux-4.1.27/drivers/s390/cio/ |
D | chsc.h | 156 u32 rid:8; member
|
D | scm.c | 145 scmdev->attrs.res_id = sale->rid; in scmdev_setup()
|
/linux-4.1.27/arch/mips/include/asm/txx9/ |
D | tx3927.h | 78 endian_def_b4(cc, scc, rpli, rid);
|
/linux-4.1.27/arch/ia64/kernel/ |
D | palinfo.c | 747 unsigned long rid:24; in tr_info() member 799 gr_reg->pl, gr_reg->ar, rid_reg->rid, gr_reg->p, gr_reg->ma, in tr_info()
|
/linux-4.1.27/Documentation/scsi/ |
D | ChangeLog.ips | 5 - Get rid on IOCTL_NEW_COMMAND code
|
D | ChangeLog.lpfc | 658 rid of build warnings on later 2.6.9-rc kernels. Build 805 * Get rid of ip_tmofunc / scsi_tmofunc. 847 * Get rid of initial static routine declarations in lpfc_hbadisc.c 1013 * Get rid of delay_iodone timer. 1038 to get rid of clkData and pass only one argument to timeout 1244 * Formatting changes: get rid of leading spaces in code 1444 * Get rid of long mdelay's in insmod path 1462 * Get rid of capitalization of function names. 1666 * Minor formatting changes get rid of failover defines for
|
D | ChangeLog.sym53c8xx | 69 - Get rid of the boot command line "ultra:" argument. 223 - Get rid of the old PCI bios interface, but preserve kernel 2.0
|
D | ChangeLog.ncr53c8xx | 125 - Get rid of the old PCI bios interface, but preserve kernel 2.0
|
D | ChangeLog.megaraid_sas | 589 gets rid of the otherwise superflous instance_lock and avoids an unsave
|
D | ncr53c8xx.txt | 300 impact on performances is not too bad. You can get rid of the messages by 1213 Not using Write And Invalidate obviously gets rid of this chip bug, and so
|
D | sym53c8xx_2.txt | 271 impact on performances is not too bad. You can get rid of the messages by
|
D | ChangeLog.1992-1997 | 149 latency conditions, but it gets rid of races and crashes.
|
/linux-4.1.27/arch/arm/nwfpe/ |
D | ChangeLog | 55 register type out of FPREG, and getting rid of the union variable
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | x_store.S | 114 | get rid of ext integer bit
|
D | round.S | 590 andil #0xe0000000,%d0 |get rid of all but G,R,S
|
D | res_func.S | 72 bclrb #sign_bit,LOCAL_EX(%a0) |get rid of false sign
|
/linux-4.1.27/drivers/hid/usbhid/ |
D | hiddev.c | 80 unsigned int rid = rinfo->report_id & HID_REPORT_ID_MASK; in hiddev_lookup_report() local 106 report = report_enum->report_id_hash[rid]; in hiddev_lookup_report()
|
/linux-4.1.27/tools/perf/util/ |
D | session.c | 632 unsigned rid, i = 0; in regs_dump__printf() local 634 for_each_set_bit(rid, (unsigned long *) &mask, sizeof(mask) * 8) { in regs_dump__printf() 638 perf_reg_name(rid), val); in regs_dump__printf()
|
/linux-4.1.27/arch/frv/kernel/ |
D | sleep.S | 271 movgs gr0,iampr1 ; get rid of temporary mapping
|
/linux-4.1.27/fs/befs/ |
D | ChangeLog | 333 Got rid of abominations befs_iaddr2inode() and befs_inode2ino(). 372 * Got rid of kernel warning on mount.
|
/linux-4.1.27/Documentation/fb/ |
D | sstfb.txt | 160 - Get rid of the previous paragraph.
|
/linux-4.1.27/drivers/net/ethernet/qlogic/qlge/ |
D | qlge.h | 1283 __le16 rid; member 1309 __le16 rid; member
|
D | qlge_dbg.c | 1662 pr_err("wqicb->rid = 0x%x\n", le16_to_cpu(wqicb->rid)); in ql_dump_wqicb()
|
D | qlge_main.c | 3286 wqicb->rid = 0; in ql_start_tx_ring()
|
/linux-4.1.27/drivers/staging/lustre/lustre/lmv/ |
D | lmv_obd.c | 1856 struct lu_fid rid = body->fid1; in lmv_getattr_name() local 1858 PFID(&rid)); in lmv_getattr_name() 1860 tgt = lmv_find_target(lmv, &rid); in lmv_getattr_name() 1866 op_data->op_fid1 = rid; in lmv_getattr_name()
|
/linux-4.1.27/arch/mips/kvm/ |
D | locore.S | 245 INT_SRL k0, k0, 10 #03: Get rid of CPUNum
|
/linux-4.1.27/Documentation/filesystems/caching/ |
D | object.txt | 260 The object comes to one of these two states when dying once it is rid of
|
D | netfs-api.txt | 825 To get rid of a cookie, this function should be called. 898 will be called on a page to get rid of it, even if PG_private is not set. This
|
D | backend-api.txt | 169 rid of it when its usage count reaches 0.
|
/linux-4.1.27/arch/mips/include/asm/octeon/ |
D | cvmx-pci-defs.h | 264 uint32_t rid:8; member 266 uint32_t rid:8;
|
D | cvmx-pciercx-defs.h | 208 uint32_t rid:8; member 210 uint32_t rid:8;
|
/linux-4.1.27/arch/cris/arch-v10/kernel/ |
D | head.S | 149 and.d 0x7fffffff,$r0 ; get rid of the non-cache bit
|
/linux-4.1.27/Documentation/filesystems/ |
D | vfat.txt | 185 * Need to get rid of the raw scanning stuff. Instead, always use
|
D | porting | 298 metadata buffers; the method has to use truncate_inode_pages_final() to get rid
|
/linux-4.1.27/Documentation/ |
D | kernel-per-CPU-kthreads.txt | 196 to entirely get rid of the OS jitter, but you can
|
D | svga.txt | 274 functions as I try to get rid of _all_ hardware probing here.
|
D | kobject.txt | 274 release() method. Do not try to get rid of this warning by providing an
|
D | IPMI.txt | 258 Once you are done, call ipmi_destroy_user() to get rid of the user.
|
D | CodingStyle | 503 So, you can either get rid of GNU emacs, or change it to use saner
|
D | memory-barriers.txt | 1430 rid of a load and a branch. The problem is that the compiler will
|
/linux-4.1.27/Documentation/RCU/ |
D | RTFP.txt | 848 by RCU and/or seqlocks, and we could get rid of brlocks entirely.' 2525 absolute anti-gimmick. It's some seriously good stuff, and gets rid of 2529 single-threaded loads (on an SMP kernel), because it gets rid of some 2810 Getting rid of TINY_PREEMPT_RCU.
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf-script-python.txt | 210 rid of everything to do with printing as well as the trace_begin() and
|
/linux-4.1.27/drivers/net/ethernet/emulex/benet/ |
D | be_cmds.h | 536 u16 rid; member
|
/linux-4.1.27/Documentation/cgroups/ |
D | memory.txt | 426 A sync followed by echo 1 > /proc/sys/vm/drop_caches will help get rid of
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 794 First, this is how you get rid of those bleeding console xterms by
|