Changeset 305 for GPL/branches/uniaud-2.0/include/linux/moduleparam.h
- Timestamp:
- Mar 24, 2008, 2:43:42 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/branches/uniaud-2.0/include/linux/moduleparam.h
r32 r305 66 66 module_param_call(name, param_set_##type, param_get_##type, &value, perm) 67 67 68 #ifndef TARGET_OS2 68 69 #define module_param(name, type, perm) \ 69 70 module_param_named(name, name, type, perm) 70 71 #endif 71 72 /* Actually copy string: maxlen param is usually sizeof(string). */ 72 73 #define module_param_string(name, string, len, perm) \ … … 137 138 &__param_arr_##name, perm) 138 139 140 #ifndef TARGET_OS2 139 141 #define module_param_array(name, type, nump, perm) \ 140 142 module_param_array_named(name, name, type, nump, perm) 141 143 #endif 142 144 extern int param_array_set(const char *val, struct kernel_param *kp); 143 145 extern int param_array_get(char *buffer, struct kernel_param *kp);
Note:
See TracChangeset
for help on using the changeset viewer.