Remove ancient, unused, useless ICH stub.

This commit is contained in:
Augustin Cavalier 2017-05-12 16:48:49 -04:00
parent fc474c326c
commit 7f06022487
5 changed files with 0 additions and 75 deletions

View File

@ -10,7 +10,6 @@ SubInclude HAIKU_TOP src add-ons kernel file_cache ;
SubInclude HAIKU_TOP src add-ons kernel file_systems ;
SubInclude HAIKU_TOP src add-ons kernel interrupt_controllers ;
SubInclude HAIKU_TOP src add-ons kernel network ;
SubInclude HAIKU_TOP src add-ons kernel media ;
SubInclude HAIKU_TOP src add-ons kernel partitioning_systems ;
SubInclude HAIKU_TOP src add-ons kernel generic ;
SubInclude HAIKU_TOP src add-ons kernel bluetooth ;

View File

@ -1,3 +0,0 @@
SubDir HAIKU_TOP src add-ons kernel media ;
SubInclude HAIKU_TOP src add-ons kernel media audio ;

View File

@ -1,3 +0,0 @@
SubDir HAIKU_TOP src add-ons kernel media audio ;
SubInclude HAIKU_TOP src add-ons kernel media audio ich ;

View File

@ -1,7 +0,0 @@
SubDir HAIKU_TOP src add-ons kernel media audio ich ;
UsePrivateHeaders media ;
KernelAddon ich :
ich.c
;

View File

@ -1,61 +0,0 @@
/*
* BeOS AC97 host interface driver for Intel Host Controllers (ICH)
*
* Implemented using the audio_module API
*
* Copyright (c) 2003, Marcus Overhagen <marcus@overhagen.de>
*
* All rights reserved.
* Redistribution only allowed under the terms of the MIT license.
*
*/
#include <OS.h>
#include <KernelExport.h>
#include "audio_module.h"
void print_hello_world(void)
{
dprintf("print_hello_world\n");
}
// std_ops
static
status_t
std_ops(int32 op, ...)
{
dprintf("ich: std_ops(0x%lx)\n", op);
switch(op) {
case B_MODULE_INIT:
case B_MODULE_UNINIT:
return B_OK;
}
return B_ERROR;
}
static
void
print_hello(void)
{
dprintf("print_hello\n");
}
static audio_module_info audio_driver_module =
{
// module_info
{
"media/audio/ich",
0,
std_ops
},
print_hello
};
_EXPORT audio_module_info *modules[] =
{
&audio_driver_module,
NULL
};