remove debugging stuff accidentally committed.
This commit is contained in:
parent
f91b80053d
commit
7fa5b1d2e9
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: ping.c,v 1.4 2020/04/30 00:48:10 christos Exp $ */
|
||||
/* $NetBSD: ping.c,v 1.5 2020/04/30 10:55:32 christos Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 2015 The NetBSD Foundation, Inc.
|
||||
|
@ -27,15 +27,13 @@
|
|||
*/
|
||||
|
||||
#include <sys/cdefs.h>
|
||||
__KERNEL_RCSID(0, "$NetBSD: ping.c,v 1.4 2020/04/30 00:48:10 christos Exp $");
|
||||
__KERNEL_RCSID(0, "$NetBSD: ping.c,v 1.5 2020/04/30 10:55:32 christos Exp $");
|
||||
|
||||
#define DDB
|
||||
#include <sys/param.h>
|
||||
#include <sys/conf.h>
|
||||
#include <sys/device.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/module.h>
|
||||
#include <sys/systm.h>
|
||||
|
||||
#include "ping.h"
|
||||
|
||||
|
@ -101,7 +99,6 @@ ping_ioctl(dev_t self __unused, u_long cmd, void *data, int flag,
|
|||
switch(cmd) {
|
||||
case CMD_PING:
|
||||
printf("ping: pong!\n");
|
||||
Debugger();
|
||||
return 0;
|
||||
default:
|
||||
return ENOTTY;
|
||||
|
|
Loading…
Reference in New Issue