Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 189536
b: refs/heads/master
c: fb9e2d8
h: refs/heads/master
v: v3
  • Loading branch information
Ken Kawasaki authored and David S. Miller committed Apr 3, 2010
1 parent 4f242c7 commit 299f7cd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 93f4d91d879acfcb0ba9c2725e3133fcff2dfd1e
refs/heads/master: fb9e2d887243499b8d28efcf80821c4f6a092395
12 changes: 7 additions & 5 deletions trunk/drivers/net/pcmcia/smc91c92_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -493,13 +493,14 @@ static int pcmcia_get_versmac(struct pcmcia_device *p_dev,
{
struct net_device *dev = priv;
cisparse_t parse;
u8 *buf;

if (pcmcia_parse_tuple(tuple, &parse))
return -EINVAL;

if ((parse.version_1.ns > 3) &&
(cvt_ascii_address(dev,
(parse.version_1.str + parse.version_1.ofs[3]))))
buf = parse.version_1.str + parse.version_1.ofs[3];

if ((parse.version_1.ns > 3) && (cvt_ascii_address(dev, buf) == 0))
return 0;

return -EINVAL;
Expand Down Expand Up @@ -528,7 +529,7 @@ static int mhz_setup(struct pcmcia_device *link)
len = pcmcia_get_tuple(link, 0x81, &buf);
if (buf && len >= 13) {
buf[12] = '\0';
if (cvt_ascii_address(dev, buf))
if (cvt_ascii_address(dev, buf) == 0)
rc = 0;
}
kfree(buf);
Expand Down Expand Up @@ -910,7 +911,7 @@ static int smc91c92_config(struct pcmcia_device *link)

if (i != 0) {
printk(KERN_NOTICE "smc91c92_cs: Unable to find hardware address.\n");
goto config_undo;
goto config_failed;
}

smc->duplex = 0;
Expand Down Expand Up @@ -998,6 +999,7 @@ static int smc91c92_config(struct pcmcia_device *link)
unregister_netdev(dev);
config_failed:
smc91c92_release(link);
free_netdev(dev);
return -ENODEV;
} /* smc91c92_config */

Expand Down

0 comments on commit 299f7cd

Please sign in to comment.