diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2001-03-04 04:44:42 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2001-03-04 04:44:42 +0000 |
| commit | 99206649bd827a172e07d866539c50b5f090cf3a (patch) | |
| tree | 7b343f4284fb476247edd98c3a3d02c551d75133 /sys/boot/common | |
| parent | e2d8bb2352c4c216a7903edc7390a84ce55c2db5 (diff) | |
Notes
Diffstat (limited to 'sys/boot/common')
| -rw-r--r-- | sys/boot/common/dev_net.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sys/boot/common/dev_net.c b/sys/boot/common/dev_net.c index 884366f1e1ee..5e7b73672d76 100644 --- a/sys/boot/common/dev_net.c +++ b/sys/boot/common/dev_net.c @@ -83,6 +83,7 @@ static int net_init(void); static int net_open(struct open_file *, ...); static int net_close(struct open_file *); static int net_strategy(); +static void net_print(int); static int net_getparams(int sock); @@ -93,7 +94,8 @@ struct devsw netdev = { net_strategy, net_open, net_close, - noioctl + noioctl, + net_print }; int @@ -284,3 +286,9 @@ net_getparams(sock) printf("net_open: server path: %s\n", rootpath); return (0); } + +static void +net_print(int verbose) +{ + return; +} |
