rename component.c -> drvctl_component.c

This commit is contained in:
pooka 2014-03-13 01:56:55 +00:00
parent 3c1768175c
commit 13ad9d6c84
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.1 2010/12/07 21:38:07 pooka Exp $
# $NetBSD: Makefile,v 1.2 2014/03/13 01:56:55 pooka Exp $
#
.PATH: ${.CURDIR}/../../../../kern
@ -7,7 +7,7 @@ LIB= rumpdev_drvctl
IOCONF= DRVCTL.ioconf
SRCS= kern_drvctl.c
SRCS+= component.c
SRCS+= drvctl_component.c
.include <bsd.lib.mk>
.include <bsd.klinks.mk>

View File

@ -1,4 +1,4 @@
/* $NetBSD: component.c,v 1.2 2012/04/10 13:45:07 gson Exp $ */
/* $NetBSD: drvctl_component.c,v 1.1 2014/03/13 01:56:55 pooka Exp $ */
/*
* Copyright (c) 2010 Antti Kantee. All Rights Reserved.
@ -26,7 +26,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: component.c,v 1.2 2012/04/10 13:45:07 gson Exp $");
__KERNEL_RCSID(0, "$NetBSD: drvctl_component.c,v 1.1 2014/03/13 01:56:55 pooka Exp $");
#include <sys/param.h>
#include <sys/conf.h>