* [PATCH net-next 0/2] Fix support for the MV88E6097
@ 2016-11-25 8:41 Stefan Eichenberger
2016-11-25 8:41 ` [PATCH net-next 1/2] net: dsa: mv88e6xxx: add g1_irqs definition for MV88E6097 Stefan Eichenberger
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Stefan Eichenberger @ 2016-11-25 8:41 UTC (permalink / raw)
To: andrew, vivien.didelot, davem; +Cc: netdev, Stefan Eichenberger
This patchset fixes the following two issues for the MV88E6097:
- Add missing definition of g1_irqs
- Add missing comment
Stefan Eichenberger (2):
net: dsa: mv88e6xxx: add g1_irqs definition for MV88E6097
net: dsa: mv88e6xxx: add missing comment for MV88E6097
drivers/net/dsa/mv88e6xxx/chip.c | 2 ++
1 file changed, 2 insertions(+)
--
2.9.3
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH net-next 1/2] net: dsa: mv88e6xxx: add g1_irqs definition for MV88E6097
2016-11-25 8:41 [PATCH net-next 0/2] Fix support for the MV88E6097 Stefan Eichenberger
@ 2016-11-25 8:41 ` Stefan Eichenberger
2016-11-25 8:41 ` [PATCH net-next 2/2] net: dsa: mv88e6xxx: add missing comment " Stefan Eichenberger
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Stefan Eichenberger @ 2016-11-25 8:41 UTC (permalink / raw)
To: andrew, vivien.didelot, davem; +Cc: netdev, Stefan Eichenberger
Add the missing definition of g1_irqs for MV88E6097.
Signed-off-by: Stefan Eichenberger <stefan.eichenberger@netmodule.com>
---
drivers/net/dsa/mv88e6xxx/chip.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/dsa/mv88e6xxx/chip.c b/drivers/net/dsa/mv88e6xxx/chip.c
index b14b3d5..7002d0f 100644
--- a/drivers/net/dsa/mv88e6xxx/chip.c
+++ b/drivers/net/dsa/mv88e6xxx/chip.c
@@ -3602,6 +3602,7 @@ static const struct mv88e6xxx_info mv88e6xxx_table[] = {
.port_base_addr = 0x10,
.global1_addr = 0x1b,
.age_time_coeff = 15000,
+ .g1_irqs = 8,
.flags = MV88E6XXX_FLAGS_FAMILY_6097,
.ops = &mv88e6097_ops,
},
--
2.9.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH net-next 2/2] net: dsa: mv88e6xxx: add missing comment for MV88E6097
2016-11-25 8:41 [PATCH net-next 0/2] Fix support for the MV88E6097 Stefan Eichenberger
2016-11-25 8:41 ` [PATCH net-next 1/2] net: dsa: mv88e6xxx: add g1_irqs definition for MV88E6097 Stefan Eichenberger
@ 2016-11-25 8:41 ` Stefan Eichenberger
2016-11-25 14:27 ` [PATCH net-next 0/2] Fix support for the MV88E6097 Andrew Lunn
2016-11-28 16:59 ` David Miller
3 siblings, 0 replies; 5+ messages in thread
From: Stefan Eichenberger @ 2016-11-25 8:41 UTC (permalink / raw)
To: andrew, vivien.didelot, davem; +Cc: netdev, Stefan Eichenberger
Add a missing comment for the MV88E6097 because of unification.
Signed-off-by: Stefan Eichenberger <stefan.eichenberger@netmodule.com>
---
drivers/net/dsa/mv88e6xxx/chip.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/net/dsa/mv88e6xxx/chip.c b/drivers/net/dsa/mv88e6xxx/chip.c
index 7002d0f..68eb8fc 100644
--- a/drivers/net/dsa/mv88e6xxx/chip.c
+++ b/drivers/net/dsa/mv88e6xxx/chip.c
@@ -3210,6 +3210,7 @@ static const struct mv88e6xxx_ops mv88e6095_ops = {
};
static const struct mv88e6xxx_ops mv88e6097_ops = {
+ /* MV88E6XXX_FAMILY_6097 */
.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
.phy_read = mv88e6xxx_g2_smi_phy_read,
.phy_write = mv88e6xxx_g2_smi_phy_write,
--
2.9.3
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH net-next 0/2] Fix support for the MV88E6097
2016-11-25 8:41 [PATCH net-next 0/2] Fix support for the MV88E6097 Stefan Eichenberger
2016-11-25 8:41 ` [PATCH net-next 1/2] net: dsa: mv88e6xxx: add g1_irqs definition for MV88E6097 Stefan Eichenberger
2016-11-25 8:41 ` [PATCH net-next 2/2] net: dsa: mv88e6xxx: add missing comment " Stefan Eichenberger
@ 2016-11-25 14:27 ` Andrew Lunn
2016-11-28 16:59 ` David Miller
3 siblings, 0 replies; 5+ messages in thread
From: Andrew Lunn @ 2016-11-25 14:27 UTC (permalink / raw)
To: Stefan Eichenberger; +Cc: vivien.didelot, davem, netdev, Stefan Eichenberger
On Fri, Nov 25, 2016 at 09:41:28AM +0100, Stefan Eichenberger wrote:
> This patchset fixes the following two issues for the MV88E6097:
> - Add missing definition of g1_irqs
> - Add missing comment
>
> Stefan Eichenberger (2):
> net: dsa: mv88e6xxx: add g1_irqs definition for MV88E6097
> net: dsa: mv88e6xxx: add missing comment for MV88E6097
>
> drivers/net/dsa/mv88e6xxx/chip.c | 2 ++
> 1 file changed, 2 insertions(+)
Hi Stefan
Thanks for the delta patches.
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Andrew
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH net-next 0/2] Fix support for the MV88E6097
2016-11-25 8:41 [PATCH net-next 0/2] Fix support for the MV88E6097 Stefan Eichenberger
` (2 preceding siblings ...)
2016-11-25 14:27 ` [PATCH net-next 0/2] Fix support for the MV88E6097 Andrew Lunn
@ 2016-11-28 16:59 ` David Miller
3 siblings, 0 replies; 5+ messages in thread
From: David Miller @ 2016-11-28 16:59 UTC (permalink / raw)
To: eichest; +Cc: andrew, vivien.didelot, netdev, stefan.eichenberger
From: Stefan Eichenberger <eichest@gmail.com>
Date: Fri, 25 Nov 2016 09:41:28 +0100
> This patchset fixes the following two issues for the MV88E6097:
> - Add missing definition of g1_irqs
> - Add missing comment
Series applied, thanks Stefan.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-11-28 16:59 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-25 8:41 [PATCH net-next 0/2] Fix support for the MV88E6097 Stefan Eichenberger
2016-11-25 8:41 ` [PATCH net-next 1/2] net: dsa: mv88e6xxx: add g1_irqs definition for MV88E6097 Stefan Eichenberger
2016-11-25 8:41 ` [PATCH net-next 2/2] net: dsa: mv88e6xxx: add missing comment " Stefan Eichenberger
2016-11-25 14:27 ` [PATCH net-next 0/2] Fix support for the MV88E6097 Andrew Lunn
2016-11-28 16:59 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).