aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/tidspbridge/include
diff options
context:
space:
mode:
authorIvan Gomez Castellanos <ivan.gomez@ti.com>2010-08-25 18:09:04 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2010-08-31 14:23:17 -0400
commitbd5dc30e3ee68f0aa6c1e282d88740f2d1fa909a (patch)
tree488b6104f89717c5050302d41053ae44eb72693d /drivers/staging/tidspbridge/include
parent220344f25418b698f01e2e6e4b6eb00b7cfa21ef (diff)
staging: tidspbridge: Remove services.c and services.h
The services_init() and services_exit() functions don't do anything, so they are removed, and as these are the only two functions defined in services.c and services.h, then these files are also removed. Signed-off-by: Ivan Gomez Castellanos <ivan.gomez@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/staging/tidspbridge/include')
-rw-r--r--drivers/staging/tidspbridge/include/dspbridge/services.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/drivers/staging/tidspbridge/include/dspbridge/services.h b/drivers/staging/tidspbridge/include/dspbridge/services.h
deleted file mode 100644
index eb26c867c93..00000000000
--- a/drivers/staging/tidspbridge/include/dspbridge/services.h
+++ /dev/null
@@ -1,50 +0,0 @@
1/*
2 * services.h
3 *
4 * DSP-BIOS Bridge driver support functions for TI OMAP processors.
5 *
6 * Provide loading and unloading of SERVICES modules.
7 *
8 * Copyright (C) 2005-2006 Texas Instruments, Inc.
9 *
10 * This package is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
16 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17 */
18
19#ifndef SERVICES_
20#define SERVICES_
21
22#include <dspbridge/host_os.h>
23/*
24 * ======== services_exit ========
25 * Purpose:
26 * Discontinue usage of module; free resources when reference count
27 * reaches 0.
28 * Parameters:
29 * Returns:
30 * Requires:
31 * SERVICES initialized.
32 * Ensures:
33 * Resources used by module are freed when cRef reaches zero.
34 */
35extern void services_exit(void);
36
37/*
38 * ======== services_init ========
39 * Purpose:
40 * Initializes SERVICES modules.
41 * Parameters:
42 * Returns:
43 * TRUE if all modules initialized; otherwise FALSE.
44 * Requires:
45 * Ensures:
46 * SERVICES modules initialized.
47 */
48extern bool services_init(void);
49
50#endif /* SERVICES_ */