rename component.c -> audio_component.c

This commit is contained in:
pooka 2014-03-13 01:57:52 +00:00
parent bc6163d6d2
commit 3bae975740
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.1 2010/05/01 23:19:56 pooka Exp $
# $NetBSD: Makefile,v 1.2 2014/03/13 01:57:52 pooka Exp $
#
.PATH: ${.CURDIR}/../../../../dev
@ -7,7 +7,7 @@ LIB= rumpdev_audio
IOCONF= AUDIO.ioconf
SRCS= audio.c auconv.c aurateconv.c mulaw.c
SRCS+= component.c
SRCS+= audio_component.c
CPPFLAGS+= -I${.CURDIR}/../../../librump/rumpvfs

View File

@ -1,4 +1,4 @@
/* $NetBSD: component.c,v 1.2 2011/02/25 19:27:05 riz Exp $ */
/* $NetBSD: audio_component.c,v 1.1 2014/03/13 01:57:52 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 2011/02/25 19:27:05 riz Exp $");
__KERNEL_RCSID(0, "$NetBSD: audio_component.c,v 1.1 2014/03/13 01:57:52 pooka Exp $");
#include <sys/param.h>
#include <sys/conf.h>