aboutsummaryrefslogtreecommitdiffstats
path: root/net/dsa
diff options
context:
space:
mode:
authorAndrew Lunn <andrew@lunn.ch>2016-04-12 20:40:41 -0400
committerDavid S. Miller <davem@davemloft.net>2016-04-13 18:15:23 -0400
commit5feebd0a8a799fe076c606b7c3bc267ae8c4344a (patch)
tree4e836ca5b94a31b2cbc0a8cc4fb36ae0ab3a1655 /net/dsa
parent7543a6d5359e371ce9434955dbe6a79f548ea321 (diff)
net: dsa: Remove allocation of driver private memory
The drivers now allocate their own memory for private usage. Remove the allocation from the core code. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Tested-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa')
-rw-r--r--net/dsa/dsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c
index 7ef8a92a9e39..14bf12f637d2 100644
--- a/net/dsa/dsa.c
+++ b/net/dsa/dsa.c
@@ -402,7 +402,7 @@ dsa_switch_setup(struct dsa_switch_tree *dst, int index,
402 /* 402 /*
403 * Allocate and initialise switch state. 403 * Allocate and initialise switch state.
404 */ 404 */
405 ds = devm_kzalloc(parent, sizeof(*ds) + drv->priv_size, GFP_KERNEL); 405 ds = devm_kzalloc(parent, sizeof(*ds), GFP_KERNEL);
406 if (ds == NULL) 406 if (ds == NULL)
407 return ERR_PTR(-ENOMEM); 407 return ERR_PTR(-ENOMEM);
408 408