rename component.c -> pad_component.c

This commit is contained in:
pooka 2014-03-13 01:52:04 +00:00
parent 7a69fdf49d
commit ea2e453cb6
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.2 2013/04/04 01:41:51 pooka Exp $
# $NetBSD: Makefile,v 1.3 2014/03/13 01:52:04 pooka Exp $
#
.PATH: ${.CURDIR}/../../../../dev/pad
@ -6,7 +6,7 @@
LIB= rumpdev_pad
SRCS= pad.c padvol.c
SRCS+= component.c
SRCS+= pad_component.c
CPPFLAGS+= -I${.CURDIR}/../../../librump/rumpvfs

View File

@ -1,4 +1,4 @@
/* $NetBSD: component.c,v 1.2 2013/04/04 11:28:02 pooka Exp $ */
/* $NetBSD: pad_component.c,v 1.1 2014/03/13 01:52:04 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 2013/04/04 11:28:02 pooka Exp $");
__KERNEL_RCSID(0, "$NetBSD: pad_component.c,v 1.1 2014/03/13 01:52:04 pooka Exp $");
#include <sys/param.h>
#include <sys/conf.h>