From: Timur Tabi Date: Wed, 29 Aug 2012 08:08:03 +0000 (+0000) Subject: net/fsl_pq_mdio: add support for the Fman 1G MDIO controller X-Git-Tag: upstream/snapshot3+hdmi~6565^2~252 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=761743ebc92df72053e736fce953a5d2e90099d5;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git net/fsl_pq_mdio: add support for the Fman 1G MDIO controller The MDIO controller on the Frame Manager (Fman) is compatible with the QE and Gianfar MDIO controllers, but we don't care about the TBI because the Ethernet drivers (FMD) take care of programming it. Signed-off-by: Timur Tabi Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/freescale/fsl_pq_mdio.c b/drivers/net/ethernet/freescale/fsl_pq_mdio.c index ebd4638..c93a056 100644 --- a/drivers/net/ethernet/freescale/fsl_pq_mdio.c +++ b/drivers/net/ethernet/freescale/fsl_pq_mdio.c @@ -342,6 +342,15 @@ static struct of_device_id fsl_pq_mdio_match[] = { }, }, #endif + /* No Kconfig option for Fman support yet */ + { + .compatible = "fsl,fman-mdio", + .data = &(struct fsl_pq_mdio_data) { + .mii_offset = 0, + /* Fman TBI operations are handled elsewhere */ + }, + }, + {}, }; MODULE_DEVICE_TABLE(of, fsl_pq_mdio_match);