summaryrefslogtreecommitdiffstats
path: root/include/linux/stmmac.h
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2015-07-20 20:45:58 -0700
committerDavid S. Miller <davem@davemloft.net>2015-07-20 20:45:58 -0700
commit2c1bcaffe8c48fa00735d97ea9552c87159a838c (patch)
treef21c0cbf821d566dfb116af722cac58366ba61e8 /include/linux/stmmac.h
parent7781e5d10a457b7e456c8193896c2141cdbf2ad4 (diff)
parentf4c190eb8b4f80b12dc98ce7d54a3bea0e4e7e69 (diff)
downloadlinux-2c1bcaffe8c48fa00735d97ea9552c87159a838c.tar.gz
linux-2c1bcaffe8c48fa00735d97ea9552c87159a838c.tar.bz2
linux-2c1bcaffe8c48fa00735d97ea9552c87159a838c.zip
Merge branch 'stmmac-cleanup'
Joachim Eastwood says: ==================== stmmac clean up for 4.3 part1 This patch set continues the conversion of the dwmac glue layers to more proper platform drivers. The first part of the patch set cleans up stmmac_platform a bit. Refactors code from the common probe function and exports two functions that will be used in the dwmac-* drivers. Second part converts two simple dwmac-* drivers to have their own probe function and use the exported functions. This brings us closer to point where stmmac_platform is only a library of common functions for the dwmac-* drivers to use. The plan next is: * add probe functions to the rest of the dwmac-* drivers * move probe function in stmmac_platform to dwmac-generic * remove struct stmmac_of_data and let those drivers that actually need match data handle it themselves * clean up include/linux/stmmac.h Note that this patch set has only been tested on lpc18xx so testing on other platforms is greatly appreciated. Previous parts can be found here: http://www.spinics.net/lists/netdev/msg328997.html http://www.spinics.net/lists/netdev/msg329932.html ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/stmmac.h')
-rw-r--r--include/linux/stmmac.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/stmmac.h b/include/linux/stmmac.h
index c735f5c91eea..c86a20047cb1 100644
--- a/include/linux/stmmac.h
+++ b/include/linux/stmmac.h
@@ -123,8 +123,6 @@ struct plat_stmmacenet_data {
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 *custom_cfg;
- void *custom_data;
void *bsp_priv;
};