diff options
author | Joachim Eastwood <manabian@gmail.com> | 2015-07-29 01:09:03 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-07-29 10:13:25 +0300 |
commit | 75fee59550a9899fd9438ebc0a64c972829a8dd2 (patch) | |
tree | 7f54431e876b55b37680c8013519b43ce01cda88 /include/linux/stmmac.h | |
parent | 0933328a1b8adb6c8b2b8c8b823dad0295659c40 (diff) | |
download | linux-75fee59550a9899fd9438ebc0a64c972829a8dd2.tar.xz |
stmmac: remove setup/free glue callbacks
As all dwmac-* drivers have been converted to have a proper probe
function the setup callback can now be removed. Also remove the
free callback that wasn't used by any driver.
New dwmac-* drivers should implement standard probe and remove
functions to preform any needed setup and teardown.
Signed-off-by: Joachim Eastwood <manabian@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/stmmac.h')
-rw-r--r-- | include/linux/stmmac.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/stmmac.h b/include/linux/stmmac.h index b43cd56b78e9..eead8ab93c0a 100644 --- a/include/linux/stmmac.h +++ b/include/linux/stmmac.h @@ -119,8 +119,6 @@ struct plat_stmmacenet_data { int rx_fifo_size; void (*fix_mac_speed)(void *priv, unsigned int speed); void (*bus_setup)(void __iomem *ioaddr); - void *(*setup)(struct platform_device *pdev); - void (*free)(struct platform_device *pdev, void *priv); int (*init)(struct platform_device *pdev, void *priv); void (*exit)(struct platform_device *pdev, void *priv); void *bsp_priv; |