netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jeff Garzik <jgarzik@pobox.com>
To: "John W. Linville" <linville@tuxdriver.com>
Cc: linux-kernel@vger.kernel.org, netdev@oss.sgi.com, akpm@osdl.org,
	marcelo.tosatti@cyclades.com
Subject: Re: [patch 2.4.28-pre3] 3c59x: resync with 2.6
Date: Fri, 08 Oct 2004 15:05:37 -0400	[thread overview]
Message-ID: <4166E501.4000708@pobox.com> (raw)
In-Reply-To: <20041008121307.C14378@tuxdriver.com>

John W. Linville wrote:

>  static struct ethtool_ops vortex_ethtool_ops = {
> -	.get_drvinfo		= vortex_get_drvinfo,
> +	.get_drvinfo =		vortex_get_drvinfo,
>  };

reverting good style.


>  
> -static int vortex_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
> +#ifdef CONFIG_PCI
> +static int vortex_do_ioctl(struct net_device *dev, struct ifreq *rq, int cmd)
>  {
> -	struct vortex_private *vp = (struct vortex_private *)dev->priv;
> +	struct vortex_private *vp = netdev_priv(dev);
>  	long ioaddr = dev->base_addr;
> -	struct mii_ioctl_data *data = (struct mii_ioctl_data *)&rq->ifr_data;
> +	struct mii_ioctl_data *data = if_mii(rq);
>  	int phy = vp->phys[0] & 0x1f;
>  	int retval;
>  
>  	switch(cmd) {
>  	case SIOCGMIIPHY:		/* Get address of MII PHY in use. */
> -	case SIOCDEVPRIVATE:		/* for binary compat, remove in 2.5 */
>  		data->phy_id = phy;
>  
>  	case SIOCGMIIREG:		/* Read MII PHY register. */
> -	case SIOCDEVPRIVATE+1:		/* for binary compat, remove in 2.5 */
>  		EL3WINDOW(4);
>  		data->val_out = mdio_read(dev, data->phy_id & 0x1f, data->reg_num & 0x1f);
>  		retval = 0;
>  		break;
>  
>  	case SIOCSMIIREG:		/* Write MII PHY register. */
> -	case SIOCDEVPRIVATE+2:		/* for binary compat, remove in 2.5 */

breaks ABI in the middle of a stable series



> @@ -144,6 +145,12 @@ struct mii_ioctl_data {
>  };
>  
>  
> +static inline struct mii_ioctl_data *if_mii(struct ifreq *rq)
> +{
> +	return (struct mii_ioctl_data *) &rq->ifr_ifru;
> +}
> +
> +

This should be in include/linux/mii.h like it is in 2.6.x.

	Jeff

  parent reply	other threads:[~2004-10-08 19:05 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-10-08 16:13 [patch 2.4.28-pre3] 3c59x: resync with 2.6 John W. Linville
2004-10-08 16:16 ` John W. Linville
2004-10-08 18:13 ` Russell King
2004-10-08 17:26   ` John W. Linville
2004-10-08 18:32   ` Jeff Garzik
2004-10-08 19:05 ` Jeff Garzik [this message]
2004-10-08 18:29   ` John W. Linville
2004-10-08 18:56   ` John W. Linville
2004-10-08 19:11   ` [patch 2.6.9-rc3] 3c59x: style change in vortex_ethtool_ops declaration John W. Linville

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4166E501.4000708@pobox.com \
    --to=jgarzik@pobox.com \
    --cc=akpm@osdl.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linville@tuxdriver.com \
    --cc=marcelo.tosatti@cyclades.com \
    --cc=netdev@oss.sgi.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).