We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fde9156 commit c0a8d95Copy full SHA for c0a8d95
drivers/usb/mtu3/mtu3_hw_regs.h
@@ -134,7 +134,7 @@
134
#define TX_W1C_BITS (~(TX_SENTSTALL))
135
136
/* U3D_TX1CSR1 */
137
-#define TX_MAX_PKT_G2(x) (((x) & 0x7f) << 24)
+#define TX_MAX_PKT_G2(x) (((x) & 0xff) << 24)
138
#define TX_MULT_G2(x) (((x) & 0x7) << 21)
139
#define TX_MULT_OG(x) (((x) & 0x3) << 22)
140
#define TX_MAX_PKT_OG(x) (((x) & 0x3f) << 16)
@@ -173,7 +173,7 @@
173
#define RX_W1C_BITS (~(RX_SENTSTALL | RX_RXPKTRDY))
174
175
/* U3D_RX1CSR1 */
176
-#define RX_MAX_PKT_G2(x) (((x) & 0x7f) << 24)
+#define RX_MAX_PKT_G2(x) (((x) & 0xff) << 24)
177
#define RX_MULT_G2(x) (((x) & 0x7) << 21)
178
#define RX_MULT_OG(x) (((x) & 0x3) << 22)
179
#define RX_MAX_PKT_OG(x) (((x) & 0x3f) << 16)
0 commit comments