Skip to content
Snippets Groups Projects
Commit bf0974e8 authored by Hauke Mehrtens's avatar Hauke Mehrtens
Browse files

switch: improve error message

SVN-Revision: 33464
parent db18fa38
No related branches found
No related tags found
No related merge requests found
......@@ -96,12 +96,15 @@ static int do_ioctl(int cmd)
static u16 mdio_read(__u16 phy_id, __u8 reg)
{
struct mii_ioctl_data *mii = if_mii(&robo.ifr);
int err;
mii->phy_id = phy_id;
mii->reg_num = reg;
if (do_ioctl(SIOCGMIIREG) < 0) {
err = do_ioctl(SIOCGMIIREG);
if (err < 0) {
printk(KERN_ERR PFX
"[%s:%d] SIOCGMIIREG failed!\n", __FILE__, __LINE__);
"[%s:%d] SIOCGMIIREG failed! err: %i\n", __FILE__, __LINE__, err);
return 0xffff;
}
......@@ -112,14 +115,16 @@ static u16 mdio_read(__u16 phy_id, __u8 reg)
static void mdio_write(__u16 phy_id, __u8 reg, __u16 val)
{
struct mii_ioctl_data *mii = if_mii(&robo.ifr);
int err;
mii->phy_id = phy_id;
mii->reg_num = reg;
mii->val_in = val;
if (do_ioctl(SIOCSMIIREG) < 0) {
err = do_ioctl(SIOCSMIIREG);
if (err < 0) {
printk(KERN_ERR PFX
"[%s:%d] SIOCSMIIREG failed!\n", __FILE__, __LINE__);
"[%s:%d] SIOCSMIIREG failed! err: %i\n", __FILE__, __LINE__, err);
return;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment