realtek: fix MAC_FORCE_MODE_CTRL register for RTL931x
Ports will not work as expected on the RTL931x devices. This comes from a typo in the address. Fixed according to the documentation: https://svanheule.net/realtek/mango/register/mac_force_mode_ctrl Signed-off-by: Markus Stockhausen <markus.stockhausen@gmx.de> Signed-off-by: Sebastian Gottschall <s.gottschall@dd-wrt.com> Link: https://github.com/openwrt/openwrt/pull/18864 Signed-off-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
parent
9deb8fad2f
commit
a526f80af8
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@
|
|||
#define RTL838X_MAC_FORCE_MODE_CTRL (0xa104)
|
||||
#define RTL839X_MAC_FORCE_MODE_CTRL (0x02bc)
|
||||
#define RTL930X_MAC_FORCE_MODE_CTRL (0xCA1C)
|
||||
#define RTL931X_MAC_FORCE_MODE_CTRL (0x0ddc)
|
||||
#define RTL931X_MAC_FORCE_MODE_CTRL (0x0dcc)
|
||||
|
||||
#define RTL83XX_DMA_IF_INTR_STS_NOTIFY_MASK GENMASK(22, 20)
|
||||
#define RTL83XX_DMA_IF_INTR_STS_RX_DONE_MASK GENMASK(15, 8)
|
||||
|
|
Loading…
Reference in a new issue