Minor cleanup.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@22567 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
c0737fa86d
commit
4c437c0fc7
@ -1,25 +1,25 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// Copyright (c) 2003-2004, Niels S. Reedijk,
|
||||
// Rudolf Cornelissen
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a
|
||||
// copy of this software and associated documentation files (the "Software"),
|
||||
// to deal in the Software without restriction, including without limitation
|
||||
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
// and/or sell copies of the Software, and to permit persons to whom the
|
||||
// Software is furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
// DEALINGS IN THE SOFTWARE.
|
||||
|
||||
/*
|
||||
* Copyright (c) 2003-2004, Niels S. Reedijk,
|
||||
* Rudolf Cornelissen
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in
|
||||
* all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include "agp.h"
|
||||
|
||||
@ -27,10 +27,6 @@
|
||||
void silent(const char *, ... ) {}
|
||||
|
||||
|
||||
/* ++++++++++
|
||||
Loading/unloading the module
|
||||
++++++++++ */
|
||||
|
||||
static int32
|
||||
bus_std_ops(int32 op, ...)
|
||||
{
|
||||
@ -38,9 +34,7 @@ bus_std_ops(int32 op, ...)
|
||||
case B_MODULE_INIT:
|
||||
TRACE("agp_man: bus module V0.02: init\n");
|
||||
if (init() != B_OK)
|
||||
{
|
||||
return ENODEV;
|
||||
}
|
||||
break;
|
||||
case B_MODULE_UNINIT:
|
||||
TRACE("agp_man: bus module V0.02: uninit\n");
|
||||
@ -53,28 +47,20 @@ bus_std_ops(int32 op, ...)
|
||||
}
|
||||
|
||||
|
||||
/* ++++++++++
|
||||
This module exports the AGP API
|
||||
++++++++++ */
|
||||
|
||||
struct agp_module_info m_module_info =
|
||||
{
|
||||
// First the bus_manager_info:
|
||||
static struct agp_module_info sAGPModuleInfo = {
|
||||
{
|
||||
//module_info
|
||||
{
|
||||
B_AGP_MODULE_NAME ,
|
||||
B_KEEP_LOADED , // Keep loaded, even if no driver requires it
|
||||
B_AGP_MODULE_NAME,
|
||||
B_KEEP_LOADED, // Keep loaded, even if no driver requires it
|
||||
bus_std_ops
|
||||
} ,
|
||||
},
|
||||
NULL // the rescan function
|
||||
} ,
|
||||
//my functions
|
||||
},
|
||||
get_nth_agp_info,
|
||||
enable_agp
|
||||
};
|
||||
|
||||
_EXPORT module_info *modules[] = {
|
||||
(module_info *)&m_module_info ,
|
||||
module_info *modules[] = {
|
||||
(module_info *)&sAGPModuleInfo,
|
||||
NULL
|
||||
};
|
||||
|
@ -1,15 +1,9 @@
|
||||
/*
|
||||
** Copyright 2002/03, Thomas Kurschel. All rights reserved.
|
||||
** Distributed under the terms of the OpenBeOS License.
|
||||
*/
|
||||
* Copyright 2002/03, Thomas Kurschel. All rights reserved.
|
||||
* Distributed under the terms of the MIT License.
|
||||
*/
|
||||
|
||||
/*
|
||||
Part of Open IDE bus manager
|
||||
|
||||
Main file
|
||||
|
||||
Contains interface used by IDE controller driver.
|
||||
*/
|
||||
/*! Contains interface used by IDE controller driver. */
|
||||
|
||||
#include "ide_internal.h"
|
||||
#include "ide_sim.h"
|
||||
@ -19,7 +13,6 @@ device_manager_info *pnp;
|
||||
|
||||
|
||||
#if !_BUILDING_kernel && !BOOT
|
||||
_EXPORT
|
||||
module_info *modules[] = {
|
||||
(module_info *)&ide_for_controller_module,
|
||||
(module_info *)&ide_sim_module,
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2005 Marcus Overhagen
|
||||
* Copyright 2005-2007 Marcus Overhagen
|
||||
* Distributed under the terms of the MIT License.
|
||||
*
|
||||
* PS/2 bus manager
|
||||
@ -8,17 +8,20 @@
|
||||
* Marcus Overhagen (marcus@overhagen.de)
|
||||
*/
|
||||
|
||||
|
||||
#include "PS2.h"
|
||||
#include "ps2_common.h"
|
||||
|
||||
|
||||
static int32 function1()
|
||||
static int32
|
||||
function1()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
static int32 function2()
|
||||
static int32
|
||||
function2()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
@ -41,8 +44,7 @@ std_ops(int32 op, ...)
|
||||
}
|
||||
|
||||
|
||||
static ps2_module_info ps2_module =
|
||||
{
|
||||
static ps2_module_info ps2_module = {
|
||||
.binfo = {
|
||||
.minfo = {
|
||||
.name = B_PS2_MODULE_NAME,
|
||||
@ -56,8 +58,7 @@ static ps2_module_info ps2_module =
|
||||
};
|
||||
|
||||
|
||||
_EXPORT module_info *modules[] =
|
||||
{
|
||||
(module_info *) &ps2_module,
|
||||
module_info *modules[] = {
|
||||
(module_info *)&ps2_module,
|
||||
NULL
|
||||
};
|
||||
|
@ -586,7 +586,6 @@ locked_pool_interface interface = {
|
||||
};
|
||||
|
||||
#if !_BUILDING_kernel && !BOOT
|
||||
_EXPORT
|
||||
module_info *modules[] = {
|
||||
&interface.minfo,
|
||||
NULL
|
||||
|
Loading…
Reference in New Issue
Block a user