Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1694847
| From | Egil Hjelmeland <egil.hjelmeland@zenitel.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 10/13] net: dsa: lan9303: Only allocate 3 ports |
| Date | 2017-07-24 17:50 +0200 |
| Message-ID | <u6NMn-6Pn-37@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
Saving 2628 bytes.
Signed-off-by: Egil Hjelmeland <egil.hjelmeland@zenitel.com>
---
drivers/net/dsa/lan9303-core.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/net/dsa/lan9303-core.c b/drivers/net/dsa/lan9303-core.c
index dc95973d62ed..ad7a4c72e1fb 100644
--- a/drivers/net/dsa/lan9303-core.c
+++ b/drivers/net/dsa/lan9303-core.c
@@ -23,6 +23,8 @@
#include "lan9303.h"
+#define LAN9303_NUM_PORTS 3
+
/* 13.2 System Control and Status Registers
* Multiply register number by 4 to get address offset.
*/
@@ -1361,7 +1363,7 @@ static struct dsa_switch_ops lan9303_switch_ops = {
static int lan9303_register_switch(struct lan9303 *chip)
{
- chip->ds = dsa_switch_alloc(chip->dev, DSA_MAX_PORTS);
+ chip->ds = dsa_switch_alloc(chip->dev, LAN9303_NUM_PORTS);
if (!chip->ds)
return -ENOMEM;
--
2.11.0
DISCLAIMER:
This e-mail may contain confidential and privileged material for the sole use of the intended recipient. Any review, use, distribution or disclosure by others is strictly prohibited. If you are not the intended recipient (or authorized to receive for the recipient), please contact the sender by reply e-mail and delete all copies of this message.
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 10/13] net: dsa: lan9303: Only allocate 3 ports Egil Hjelmeland <egil.hjelmeland@zenitel.com> - 2017-07-24 17:50 +0200 Re: [PATCH 10/13] net: dsa: lan9303: Only allocate 3 ports Florian Fainelli <f.fainelli@gmail.com> - 2017-07-24 19:00 +0200
csiph-web