Re: [PATCH] driver for mcs7830 (aka DeLOCK) USB ethernet adapter

From: David Hollis
Date: Mon Aug 21 2006 - 10:31:48 EST


On Sun, 2006-08-20 at 22:07 +0200, Arnd Bergmann wrote:

> +static int mcs7830_set_autoneg(struct usbnet *dev, int ptrUserPhyMode)
> +{
> + int ret;
> + /* Enable all media types */
> + ret = mcs7830_write_phy(dev, MII_ADVERTISE, 0x05e1);
> + /* First Disable All */
> + if (!ret)
> + ret = mcs7830_write_phy(dev, MII_BMCR, 0x0000);
> + /* Enable Auto Neg */
> + if (!ret)
> + ret = mcs7830_write_phy(dev, MII_BMCR, 0x1000);
> + /* Restart Auto Neg (Keep the Enable Auto Neg Bit Set) */
> + if (!ret)
> + ret = mcs7830_write_phy(dev, MII_BMCR, 0x1200);
> + return ret < 0 ? : 0;
> +}

include/linux/mii.h also has defines for the flags for MII_ADVERTISE and
MII_BMCR:

So your 0x1200 can be 'BMCR_ANENABLE | BMCR_ANRESTART' for example.
Makes it easier to tell whats going on.

Other than that, it's looking pretty good.


--
David Hollis <dhollis@xxxxxxxxxxxxxx>

Attachment: signature.asc
Description: This is a digitally signed message part