aboutsummaryrefslogtreecommitdiffstats
path: root/net/dsa/dsa.c
diff options
context:
space:
mode:
authorAndrew Lunn <[email protected]>2016-04-13 00:40:41 +0000
committerDavid S. Miller <[email protected]>2016-04-13 22:15:23 +0000
commit5feebd0a8a799fe076c606b7c3bc267ae8c4344a (patch)
tree4e836ca5b94a31b2cbc0a8cc4fb36ae0ab3a1655 /net/dsa/dsa.c
parentnet: dsa: Have the switch driver allocate there own private memory (diff)
downloadkernel-5feebd0a8a799fe076c606b7c3bc267ae8c4344a.tar.gz
kernel-5feebd0a8a799fe076c606b7c3bc267ae8c4344a.zip
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 <[email protected]> Acked-by: Florian Fainelli <[email protected]> Tested-by: Vivien Didelot <[email protected]> Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/dsa/dsa.c')
-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,
/*
* Allocate and initialise switch state.
*/
- ds = devm_kzalloc(parent, sizeof(*ds) + drv->priv_size, GFP_KERNEL);
+ ds = devm_kzalloc(parent, sizeof(*ds), GFP_KERNEL);
if (ds == NULL)
return ERR_PTR(-ENOMEM);