Skip to content
Snippets Groups Projects
Commit e25fadc3 authored by juhosg's avatar juhosg
Browse files

generic: ar8216: allow to use chip specific cleanup callback


It will be used for AR8327.

Signed-off-by: default avatarGabor Juhos <juhosg@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39337 3c298f89-4303-0410-b956-a3cf2f4a3e73
parent b9c8263e
No related branches found
No related tags found
No related merge requests found
......@@ -67,6 +67,8 @@ struct ar8xxx_chip {
unsigned long caps;
int (*hw_init)(struct ar8xxx_priv *priv);
void (*cleanup)(struct ar8xxx_priv *priv);
void (*init_globals)(struct ar8xxx_priv *priv);
void (*init_port)(struct ar8xxx_priv *priv, int port);
void (*setup_port)(struct ar8xxx_priv *priv, int port, u32 egress,
......@@ -2234,6 +2236,9 @@ ar8xxx_create(void)
static void
ar8xxx_free(struct ar8xxx_priv *priv)
{
if (priv->chip && priv->chip->cleanup)
priv->chip->cleanup(priv);
kfree(priv->mib_stats);
kfree(priv);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment