Module Name:    src
Committed By:   thorpej
Date:           Sun Sep 25 21:56:12 UTC 2022

Modified Files:
        src/sys/dev/flash: flash.c

Log Message:
Remove unnecessary include of <sys/malloc.h>.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/dev/flash/flash.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/flash/flash.c
diff -u src/sys/dev/flash/flash.c:1.18 src/sys/dev/flash/flash.c:1.19
--- src/sys/dev/flash/flash.c:1.18	Thu Mar 31 19:30:16 2022
+++ src/sys/dev/flash/flash.c	Sun Sep 25 21:56:12 2022
@@ -1,4 +1,4 @@
-/*	$NetBSD: flash.c,v 1.18 2022/03/31 19:30:16 pgoyette Exp $	*/
+/*	$NetBSD: flash.c,v 1.19 2022/09/25 21:56:12 thorpej Exp $	*/
 
 /*-
  * Copyright (c) 2011 Department of Software Engineering,
@@ -37,7 +37,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: flash.c,v 1.18 2022/03/31 19:30:16 pgoyette Exp $");
+__KERNEL_RCSID(0, "$NetBSD: flash.c,v 1.19 2022/09/25 21:56:12 thorpej Exp $");
 
 #include <sys/param.h>
 #include <sys/types.h>
@@ -55,7 +55,6 @@ __KERNEL_RCSID(0, "$NetBSD: flash.c,v 1.
 #include <sys/bufq.h>
 #include <sys/disk.h>
 #include <sys/disklabel.h>
-#include <sys/malloc.h>
 #include <sys/reboot.h>
 
 #include "ioconf.h"

Reply via email to