Commit 402dae0b authored by Joachim Eastwood's avatar Joachim Eastwood Committed by David S. Miller

stmmac: export probe_config_dt() and get_platform_resources()

Export stmmac_probe_config_dt() and stmmac_get_platform_resources()
so they can be used in the dwmac-* drivers themselves. This will
allow us to build more flexible and standalone drivers which just
use stmmac_platform as a library for setup functions.
Signed-off-by: default avatarJoachim Eastwood <manabian@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b0003ead
...@@ -104,7 +104,7 @@ static int dwmac1000_validate_ucast_entries(int ucast_entries) ...@@ -104,7 +104,7 @@ static int dwmac1000_validate_ucast_entries(int ucast_entries)
* this function is to read the driver parameters from device-tree and * this function is to read the driver parameters from device-tree and
* set some private fields that will be used by the main at runtime. * set some private fields that will be used by the main at runtime.
*/ */
static struct plat_stmmacenet_data * struct plat_stmmacenet_data *
stmmac_probe_config_dt(struct platform_device *pdev, const char **mac) stmmac_probe_config_dt(struct platform_device *pdev, const char **mac)
{ {
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
...@@ -251,14 +251,15 @@ stmmac_probe_config_dt(struct platform_device *pdev, const char **mac) ...@@ -251,14 +251,15 @@ stmmac_probe_config_dt(struct platform_device *pdev, const char **mac)
return plat; return plat;
} }
#else #else
static struct plat_stmmacenet_data * struct plat_stmmacenet_data *
stmmac_probe_config_dt(struct platform_device *pdev, const char **mac) stmmac_probe_config_dt(struct platform_device *pdev, const char **mac)
{ {
return ERR_PTR(-ENOSYS); return ERR_PTR(-ENOSYS);
} }
#endif /* CONFIG_OF */ #endif /* CONFIG_OF */
EXPORT_SYMBOL_GPL(stmmac_probe_config_dt);
static int stmmac_get_platform_resources(struct platform_device *pdev, int stmmac_get_platform_resources(struct platform_device *pdev,
struct stmmac_resources *stmmac_res) struct stmmac_resources *stmmac_res)
{ {
struct resource *res; struct resource *res;
...@@ -302,6 +303,7 @@ static int stmmac_get_platform_resources(struct platform_device *pdev, ...@@ -302,6 +303,7 @@ static int stmmac_get_platform_resources(struct platform_device *pdev,
return 0; return 0;
} }
EXPORT_SYMBOL_GPL(stmmac_get_platform_resources);
/** /**
* stmmac_pltfr_probe - platform driver probe. * stmmac_pltfr_probe - platform driver probe.
......
...@@ -19,6 +19,14 @@ ...@@ -19,6 +19,14 @@
#ifndef __STMMAC_PLATFORM_H__ #ifndef __STMMAC_PLATFORM_H__
#define __STMMAC_PLATFORM_H__ #define __STMMAC_PLATFORM_H__
#include "stmmac.h"
struct plat_stmmacenet_data *
stmmac_probe_config_dt(struct platform_device *pdev, const char **mac);
int stmmac_get_platform_resources(struct platform_device *pdev,
struct stmmac_resources *stmmac_res);
int stmmac_pltfr_probe(struct platform_device *pdev); int stmmac_pltfr_probe(struct platform_device *pdev);
int stmmac_pltfr_remove(struct platform_device *pdev); int stmmac_pltfr_remove(struct platform_device *pdev);
extern const struct dev_pm_ops stmmac_pltfr_pm_ops; extern const struct dev_pm_ops stmmac_pltfr_pm_ops;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment