blob: 3d0497ef0e7f7d63a632209c91b322593ae4a559 [file] [log] [blame]
/*
* services.c
*
* DSP-BIOS Bridge driver support functions for TI OMAP processors.
*
* Provide SERVICES loading.
*
* Copyright (C) 2005-2006 Texas Instruments, Inc.
*
* This package is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
#include <linux/types.h>
#include <dspbridge/host_os.h>
/* ----------------------------------- DSP/BIOS Bridge */
#include <dspbridge/dbdefs.h>
/* ----------------------------------- Trace & Debug */
#include <dspbridge/dbc.h>
/* ----------------------------------- OS Adaptation Layer */
#include <dspbridge/ntfy.h>
#include <dspbridge/sync.h>
#include <dspbridge/clk.h>
/* ----------------------------------- This */
#include <dspbridge/services.h>
/*
* ======== services_exit ========
* Purpose:
* Discontinue usage of module; free resources when reference count
* reaches 0.
*/
void services_exit(void)
{
}
/*
* ======== services_init ========
* Purpose:
* Initializes SERVICES modules.
*/
bool services_init(void)
{
bool ret = true;
return ret;
}