Changes in uspace/lib/drv/generic/dev_iface.c [818fffe:79ae36dd] in mainline
- File:
-
- 1 edited
-
uspace/lib/drv/generic/dev_iface.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/drv/generic/dev_iface.c
r818fffe r79ae36dd 46 46 #include "remote_pci.h" 47 47 48 #include <stdio.h> 49 48 50 static iface_dipatch_table_t remote_ifaces = { 49 51 .ifaces = { … … 66 68 get_remote_method(remote_iface_t *rem_iface, sysarg_t iface_method_idx) 67 69 { 68 if (iface_method_idx >= rem_iface->method_count) 70 if (iface_method_idx >= rem_iface->method_count) { 69 71 return NULL; 70 72 } 73 71 74 return rem_iface->methods[iface_method_idx]; 72 75 }
Note:
See TracChangeset
for help on using the changeset viewer.
