diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2005-05-27 08:04:16 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2005-05-27 08:04:16 +0000 |
commit | 01b5e624bc03f48e6b93c9542088caa94ee45e8d (patch) | |
tree | cd0971f7c4c02bd64e62dbecd46614f63385fae3 /sys/dev/mii/urlphy.c | |
parent | 692db2b3e2c1d155b62e206549a3c99348aec670 (diff) |
some cleanup
Diffstat (limited to 'sys/dev/mii/urlphy.c')
-rw-r--r-- | sys/dev/mii/urlphy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/mii/urlphy.c b/sys/dev/mii/urlphy.c index 2b74e85e671..21e2a620268 100644 --- a/sys/dev/mii/urlphy.c +++ b/sys/dev/mii/urlphy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: urlphy.c,v 1.10 2005/03/26 04:40:09 krw Exp $ */ +/* $OpenBSD: urlphy.c,v 1.11 2005/05/27 08:04:15 brad Exp $ */ /* $NetBSD: urlphy.c,v 1.1 2002/03/28 21:07:53 ichiro Exp $ */ /* * Copyright (c) 2001, 2002 @@ -93,7 +93,7 @@ urlphy_match(struct device *parent, void *match, void *aux) * Make sure the parent is an 'url' device. */ if (strcmp(parent->dv_cfdata->cf_driver->cd_name, "url") != 0) - return(0); + return (0); return (10); } |