Changeset 642dc72 in mainline for kernel/generic/src/ipc/sysipc_ops.c
- Timestamp:
- 2012-08-20T21:47:32Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e8039a86
- Parents:
- f0defd2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/sysipc_ops.c
rf0defd2 r642dc72 92 92 { 93 93 if (imethod < sizeof(sysipc_ops) / (sizeof(sysipc_ops_t))) 94 return sysipc_ops[imethod]; 94 return sysipc_ops[imethod] ? sysipc_ops[imethod] : &null_ops; 95 95 96 return &null_ops; 96 97 }
Note:
See TracChangeset
for help on using the changeset viewer.