Skip to content

Commit 303ab2b

Browse files
committed
httpd: fix 160Mhz BW defination
1 parent c62f7ae commit 303ab2b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

trunk/user/httpd/ralink.c

+2
Original file line numberDiff line numberDiff line change
@@ -625,6 +625,8 @@ char* GetBW(int BW)
625625
return "40M";
626626
case BW_80:
627627
return "80M";
628+
case BW_160:
629+
return "160";
628630
default:
629631
return "N/A";
630632
}

trunk/user/shared/include/ralink_priv.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#define BW_20 0
4343
#define BW_40 1
4444
#define BW_80 2
45-
#define BW_BOTH 3
45+
#define BW_160 3
4646
#define BW_10 4 // not used
4747

4848
#define WDS_DISABLE_MODE 0

0 commit comments

Comments
 (0)