Searched defs:addr_req (Results 1 - 3 of 3) sorted by relevance

/drivers/ide/
H A Dide-disk.c239 static u64 idedisk_set_max_address(ide_drive_t *drive, u64 addr_req, int lba48) argument
245 addr_req--;
248 tf->lbal = (addr_req >> 0) & 0xff;
249 tf->lbam = (addr_req >>= 8) & 0xff;
250 tf->lbah = (addr_req >>= 8) & 0xff;
252 cmd.hob.lbal = (addr_req >>= 8) & 0xff;
253 cmd.hob.lbam = (addr_req >>= 8) & 0xff;
254 cmd.hob.lbah = (addr_req >>= 8) & 0xff;
257 tf->device = (addr_req >>= 8) & 0x0f;
/drivers/infiniband/core/
H A Daddr.c54 struct addr_req { struct
185 static void queue_req(struct addr_req *req)
187 struct addr_req *temp_req;
336 struct addr_req *req, *temp_req;
357 req = list_entry(req_list.next, struct addr_req, list);
379 struct addr_req *req;
431 struct addr_req *req, *temp_req;
/drivers/net/ethernet/davicom/
H A Ddm9000.c126 struct resource *addr_req; /* resources requested */ member in struct:board_info
824 if (db->addr_req)
825 release_resource(db->addr_req);
826 kfree(db->addr_req);
1496 db->addr_req = request_mem_region(db->addr_res->start, iosize,
1499 if (db->addr_req == NULL) {

Completed in 2451 milliseconds