Module Name: src
Committed By: thorpej
Date: Sun Sep 25 21:28:51 UTC 2022
Modified Files:
src/sys/dev/tc: tcds.c
Log Message:
Remove unnecessary include of <sys/malloc.h>.
To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 src/sys/dev/tc/tcds.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/tc/tcds.c
diff -u src/sys/dev/tc/tcds.c:1.28 src/sys/dev/tc/tcds.c:1.29
--- src/sys/dev/tc/tcds.c:1.28 Sat Aug 7 16:19:16 2021
+++ src/sys/dev/tc/tcds.c Sun Sep 25 21:28:51 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: tcds.c,v 1.28 2021/08/07 16:19:16 thorpej Exp $ */
+/* $NetBSD: tcds.c,v 1.29 2022/09/25 21:28:51 thorpej Exp $ */
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -58,13 +58,12 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tcds.c,v 1.28 2021/08/07 16:19:16 thorpej Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tcds.c,v 1.29 2022/09/25 21:28:51 thorpej Exp $");
#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/systm.h>
#include <sys/device.h>
-#include <sys/malloc.h>
#ifdef __alpha__
#include <machine/rpb.h>