Skip to content

Commit

Permalink
相対TS番号だけでなくTS_idを指定可能に
Browse files Browse the repository at this point in the history
指定できなかったのはただのミスなのか意図的なものなのかは不明
  • Loading branch information
otya128 committed Aug 18, 2023
1 parent 7696900 commit 1c1e6fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions driver/ptx_chrdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ static long ptx_chrdev_unlocked_ioctl(struct file *file,
break;
} else if (freq.freq_no < 12) {
/* BS */
if (freq.slot >= 8) {
if (0 && freq.slot >= 8) {
ret = -EINVAL;
break;
}
Expand Down Expand Up @@ -268,7 +268,7 @@ static long ptx_chrdev_unlocked_ioctl(struct file *file,
break;
} else if (freq.freq_no < 12) {
/* BS */
if (freq.slot >= 8) {
if (0 && freq.slot >= 8) {
ret = -EINVAL;
break;
}
Expand Down

0 comments on commit 1c1e6fa

Please sign in to comment.