Module Name: src Committed By: thorpej Date: Sat Sep 24 23:16:02 UTC 2022
Modified Files: src/sys/dev: spkr_audio.c Log Message: Remove unnecessary include of <sys/malloc.h>. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/sys/dev/spkr_audio.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/spkr_audio.c diff -u src/sys/dev/spkr_audio.c:1.11 src/sys/dev/spkr_audio.c:1.12 --- src/sys/dev/spkr_audio.c:1.11 Sat Apr 3 04:10:30 2021 +++ src/sys/dev/spkr_audio.c Sat Sep 24 23:16:02 2022 @@ -1,4 +1,4 @@ -/* $NetBSD: spkr_audio.c,v 1.11 2021/04/03 04:10:30 isaki Exp $ */ +/* $NetBSD: spkr_audio.c,v 1.12 2022/09/24 23:16:02 thorpej Exp $ */ /*- * Copyright (c) 2016 Nathanial Sloss <nathanialsl...@yahoo.com.au> @@ -27,7 +27,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: spkr_audio.c,v 1.11 2021/04/03 04:10:30 isaki Exp $"); +__KERNEL_RCSID(0, "$NetBSD: spkr_audio.c,v 1.12 2022/09/24 23:16:02 thorpej Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -35,7 +35,6 @@ __KERNEL_RCSID(0, "$NetBSD: spkr_audio.c #include <sys/kernel.h> #include <sys/errno.h> #include <sys/device.h> -#include <sys/malloc.h> #include <sys/uio.h> #include <sys/proc.h> #include <sys/ioctl.h>