|
@@ -513,7 +513,7 @@ int pvr2_ctrl_sym_to_value(struct pvr2_ctrl *cptr,
|
|
|
if (ret >= 0) {
|
|
|
ret = pvr2_ctrl_range_check(cptr,*valptr);
|
|
|
}
|
|
|
- if (maskptr) *maskptr = ~0;
|
|
|
+ *maskptr = ~0;
|
|
|
} else if (cptr->info->type == pvr2_ctl_bool) {
|
|
|
ret = parse_token(ptr,len,valptr,boolNames,
|
|
|
ARRAY_SIZE(boolNames));
|
|
@@ -522,7 +522,7 @@ int pvr2_ctrl_sym_to_value(struct pvr2_ctrl *cptr,
|
|
|
} else if (ret == 0) {
|
|
|
*valptr = (*valptr & 1) ? !0 : 0;
|
|
|
}
|
|
|
- if (maskptr) *maskptr = 1;
|
|
|
+ *maskptr = 1;
|
|
|
} else if (cptr->info->type == pvr2_ctl_enum) {
|
|
|
ret = parse_token(
|
|
|
ptr,len,valptr,
|
|
@@ -531,7 +531,7 @@ int pvr2_ctrl_sym_to_value(struct pvr2_ctrl *cptr,
|
|
|
if (ret >= 0) {
|
|
|
ret = pvr2_ctrl_range_check(cptr,*valptr);
|
|
|
}
|
|
|
- if (maskptr) *maskptr = ~0;
|
|
|
+ *maskptr = ~0;
|
|
|
} else if (cptr->info->type == pvr2_ctl_bitmask) {
|
|
|
ret = parse_tlist(
|
|
|
ptr,len,maskptr,valptr,
|