From: Ben Hutchings <ben@decadent.org.uk>
To: "Stefan Sørensen" <stefan.sorensen@spectralink.com>
Cc: mugunthanvnm@ti.com, davem@davemloft.net, netdev@vger.kernel.org
Subject: Re: [PATCH v2] net:cpsw: Pass unhandled ioctl's on to generic phy ioctl
Date: Thu, 13 Feb 2014 20:40:42 +0000 [thread overview]
Message-ID: <1392324042.15615.53.camel@deadeye.wl.decadent.org.uk> (raw)
In-Reply-To: <1392301574-24233-1-git-send-email-stefan.sorensen@spectralink.com>
[-- Attachment #1: Type: text/plain, Size: 1988 bytes --]
On Thu, 2014-02-13 at 15:26 +0100, Stefan Sørensen wrote:
> This patch allows the use of a generic timestamping phy connected
> to the cpsw if CPTS support is not enabled. This also adds support
> of the SIOCGMIIREG and SIOCSMIIREG, and moves handling of SIOCGMIIPHY
> to the generic driver.
>
> Signed-off-by: Stefan Sørensen <stefan.sorensen@spectralink.com>
> ---
> Changes since v1:
> - Remove SIOCGMIIPHY from cpsw
> - Mention that SIOCGMIIREG and SIOCSMIIREG support is gained
>
> drivers/net/ethernet/ti/cpsw.c | 10 +++-------
> 1 file changed, 3 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
> index 1d860ce..6ecea1d 100644
> --- a/drivers/net/ethernet/ti/cpsw.c
> +++ b/drivers/net/ethernet/ti/cpsw.c
> @@ -1471,7 +1471,6 @@ static int cpsw_hwtstamp_get(struct net_device *dev, struct ifreq *ifr)
> static int cpsw_ndo_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
> {
> struct cpsw_priv *priv = netdev_priv(dev);
> - struct mii_ioctl_data *data = if_mii(req);
> int slave_no = cpsw_slave_index(priv);
>
> if (!netif_running(dev))
> @@ -1484,14 +1483,11 @@ static int cpsw_ndo_ioctl(struct net_device *dev, struct ifreq *req, int cmd)
> case SIOCGHWTSTAMP:
> return cpsw_hwtstamp_get(dev, req);
> #endif
> - case SIOCGMIIPHY:
> - data->phy_id = priv->slaves[slave_no].phy->addr;
> - break;
> - default:
> - return -ENOTSUPP;
> }
>
> - return 0;
> + if (!priv->slaves[slave_no].phy)
> + return -EINVAL;
Sorry I didn't spot this before - the error code here should be
-EOPNOTSUPP.
(Note this is different from -ENOTSUPP as was used before. That's an
NFS error code that shouldn't be seen by userland.)
Ben.
> + return phy_mii_ioctl(priv->slaves[slave_no].phy, req, cmd);
> }
>
> static void cpsw_ndo_tx_timeout(struct net_device *ndev)
--
Ben Hutchings
The world is coming to an end. Please log off.
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 811 bytes --]
prev parent reply other threads:[~2014-02-13 20:41 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-13 14:26 [PATCH v2] net:cpsw: Pass unhandled ioctl's on to generic phy ioctl Stefan Sørensen
2014-02-13 20:40 ` Ben Hutchings [this message]
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=1392324042.15615.53.camel@deadeye.wl.decadent.org.uk \
--to=ben@decadent.org.uk \
--cc=davem@davemloft.net \
--cc=mugunthanvnm@ti.com \
--cc=netdev@vger.kernel.org \
--cc=stefan.sorensen@spectralink.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