
OpenWRT's developer guide prefers having actual patches so they an be sent upstream more easily. However, in this case, Adding proper fields also allows for `git am` to properly function. Some of these patches are quite old, and lack much traceable history. This commit tries to rectify that, by digging in the history to find where and how it was first added. It is by no means perfect and also shows some patches that should have been long gone. Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
21 lines
736 B
Diff
21 lines
736 B
Diff
From: Christian Lamparter <chunkeey@gmail.com>
|
|
Subject: [PATCH] ath79: gmac: add parsers for rxd(v)- and tx(d|en)-delay for
|
|
|
|
ath79: gmac: add parsers for rxd(v)- and tx(d|en)-delay for AR9344
|
|
|
|
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
|
|
|
|
--- a/arch/mips/include/asm/mach-ath79/ar71xx_regs.h
|
|
+++ b/arch/mips/include/asm/mach-ath79/ar71xx_regs.h
|
|
@@ -1226,6 +1226,10 @@
|
|
#define AR934X_ETH_CFG_RDV_DELAY BIT(16)
|
|
#define AR934X_ETH_CFG_RDV_DELAY_MASK 0x3
|
|
#define AR934X_ETH_CFG_RDV_DELAY_SHIFT 16
|
|
+#define AR934X_ETH_CFG_TXD_DELAY_MASK 0x3
|
|
+#define AR934X_ETH_CFG_TXD_DELAY_SHIFT 18
|
|
+#define AR934X_ETH_CFG_TXE_DELAY_MASK 0x3
|
|
+#define AR934X_ETH_CFG_TXE_DELAY_SHIFT 20
|
|
|
|
/*
|
|
* QCA953X GMAC Interface
|