Changeset 818fffe in mainline
- Timestamp:
- 2011-09-15T18:03:53Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4748038
- Parents:
- c82047d
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/arm32/src/ras.c
rc82047d r818fffe 86 86 } 87 87 88 /** @} 89 */ -
kernel/generic/src/mm/frame.c
rc82047d r818fffe 1142 1142 size_t znum = find_zone(pfn, 1, 0); 1143 1143 1144 1145 1144 ASSERT(znum != (size_t) -1); 1146 1145 -
uspace/drv/bus/isa/isa.c
rc82047d r818fffe 405 405 static void fun_hw_res_alloc(isa_fun_t *fun) 406 406 { 407 fun->hw_resources.resources = 407 fun->hw_resources.resources = 408 408 (hw_resource_t *)malloc(sizeof(hw_resource_t) * ISA_MAX_HW_RES); 409 409 } -
uspace/lib/c/generic/adt/hash_table.c
rc82047d r818fffe 152 152 153 153 if (keys == h->max_keys) { 154 link_t *cur;155 156 154 /* 157 155 * All keys are known, hash_table_find() can be used to find the … … 159 157 */ 160 158 161 cur = hash_table_find(h, key);159 link_t *cur = hash_table_find(h, key); 162 160 if (cur) { 163 161 list_remove(cur); … … 174 172 hash_index_t chain; 175 173 for (chain = 0; chain < h->entries; chain++) { 176 link_t *cur; 177 178 for (cur = h->entry[chain].head.next; cur != &h->entry[chain].head; 174 for (link_t *cur = h->entry[chain].head.next; 175 cur != &h->entry[chain].head; 179 176 cur = cur->next) { 180 177 if (h->op->compare(key, keys, cur)) { -
uspace/lib/c/include/ipc/loc.h
rc82047d r818fffe 97 97 98 98 #endif 99 100 /** @} 101 */ -
uspace/lib/drv/generic/dev_iface.c
rc82047d r818fffe 46 46 #include "remote_pci.h" 47 47 48 #include <stdio.h>49 50 48 static iface_dipatch_table_t remote_ifaces = { 51 49 .ifaces = { … … 68 66 get_remote_method(remote_iface_t *rem_iface, sysarg_t iface_method_idx) 69 67 { 70 if (iface_method_idx >= rem_iface->method_count) {68 if (iface_method_idx >= rem_iface->method_count) 71 69 return NULL; 72 } 73 70 74 71 return rem_iface->methods[iface_method_idx]; 75 72 } -
uspace/lib/drv/generic/driver.c
rc82047d r818fffe 271 271 272 272 devman_handle_t dev_handle = IPC_GET_ARG1(*icall); 273 273 devman_handle_t parent_fun_handle = IPC_GET_ARG2(*icall); 274 274 275 275 ddf_dev_t *dev = create_device();
Note:
See TracChangeset
for help on using the changeset viewer.