Module Name: src
Committed By: thorpej
Date: Sun Sep 25 21:27:39 UTC 2022
Modified Files:
src/sys/dev/videomode: edid.c
Log Message:
Remove unnecessary include of <sys/malloc.h>.
To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/sys/dev/videomode/edid.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/videomode/edid.c
diff -u src/sys/dev/videomode/edid.c:1.17 src/sys/dev/videomode/edid.c:1.18
--- src/sys/dev/videomode/edid.c:1.17 Sat Apr 16 18:15:22 2022
+++ src/sys/dev/videomode/edid.c Sun Sep 25 21:27:39 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: edid.c,v 1.17 2022/04/16 18:15:22 andvar Exp $ */
+/* $NetBSD: edid.c,v 1.18 2022/09/25 21:27:39 thorpej Exp $ */
/*-
* Copyright (c) 2006 Itronix Inc.
@@ -32,14 +32,13 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: edid.c,v 1.17 2022/04/16 18:15:22 andvar Exp $");
+__KERNEL_RCSID(0, "$NetBSD: edid.c,v 1.18 2022/09/25 21:27:39 thorpej Exp $");
#ifdef _KERNEL
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/kernel.h>
-#include <sys/malloc.h>
#else
#include <stdlib.h>
#include <inttypes.h>