This patch adds the possibility to handle seperate PHYs to MCF5445x.
Naming is chosen to resemble the contrary CONFIG_FEC_SHARED_PHY in the
linux kernel.
Signed-off-by: Wolfgang Wegner <w.wegner at astro-kom.de>
        struct fec_info_s *info = (struct fec_info_s *)dev->priv;
 
        if (setclear) {
+#ifdef CONFIG_SYS_FEC_NO_SHARED_PHY
+               if (info->iobase == CONFIG_SYS_FEC0_IOBASE)
+                       gpio->par_feci2c |=
+                           (GPIO_PAR_FECI2C_MDC0_MDC0 |
+                            GPIO_PAR_FECI2C_MDIO0_MDIO0);
+               else
+                       gpio->par_feci2c |=
+                           (GPIO_PAR_FECI2C_MDC1_MDC1 |
+                            GPIO_PAR_FECI2C_MDIO1_MDIO1);
+#else
                gpio->par_feci2c |=
                    (GPIO_PAR_FECI2C_MDC0_MDC0 | GPIO_PAR_FECI2C_MDIO0_MDIO0);
+#endif
 
                if (info->iobase == CONFIG_SYS_FEC0_IOBASE)
                        gpio->par_fec |= GPIO_PAR_FEC_FEC0_RMII_GPIO;