Lines Matching refs:macb_config
3214 const struct macb_config *dt_conf) in macb_configure_caps()
3835 static const struct macb_config at91sam9260_config = {
3841 static const struct macb_config sama5d3macb_config = {
3848 static const struct macb_config pc302gem_config = {
3855 static const struct macb_config sama5d2_config = {
3862 static const struct macb_config sama5d3_config = {
3871 static const struct macb_config sama5d4_config = {
3878 static const struct macb_config emac_config = {
3883 static const struct macb_config np4_config = {
3889 static const struct macb_config zynqmp_config = {
3899 static const struct macb_config zynq_config = {
3926 static const struct macb_config default_gem_config = {
3938 const struct macb_config *macb_config = &default_gem_config; in macb_probe() local
3941 = macb_config->clk_init; in macb_probe()
3942 int (*init)(struct platform_device *) = macb_config->init; in macb_probe()
3966 macb_config = match->data; in macb_probe()
3967 clk_init = macb_config->clk_init; in macb_probe()
3968 init = macb_config->init; in macb_probe()
4003 if (macb_config) in macb_probe()
4004 bp->dma_burst_length = macb_config->dma_burst_length; in macb_probe()
4009 if (macb_config) in macb_probe()
4010 bp->jumbo_max_len = macb_config->jumbo_max_len; in macb_probe()
4020 macb_configure_caps(bp, macb_config); in macb_probe()