Commit cfa6b297506c8e19e240016acf4776bb16dc5aa2

Authored by Menon, Nishanth
Committed by Greg Kroah-Hartman
1 parent e6bf74f06f

staging: tidspbridge: remove dbdefs.h

Remove yet another custom definition header

Signed-off-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

Showing 3 changed files with 0 additions and 71 deletions Side-by-side Diff

drivers/staging/tidspbridge/include/dspbridge/dbdefs.h
... ... @@ -21,7 +21,6 @@
21 21  
22 22 #include <linux/types.h>
23 23  
24   -#include <dspbridge/dbtype.h> /* GPP side type definitions */
25 24 #include <dspbridge/rms_sh.h> /* Types shared between GPP and DSP */
26 25  
27 26 #define PG_SIZE4K 4096
drivers/staging/tidspbridge/include/dspbridge/dbtype.h
1   -/*
2   - * dbtype.h
3   - *
4   - * DSP-BIOS Bridge driver support functions for TI OMAP processors.
5   - *
6   - * This header defines data types for DSP/BIOS Bridge APIs and device
7   - * driver modules. It also defines the Hungarian prefix to use for each
8   - * base type.
9   - *
10   - * Copyright (C) 2008 Texas Instruments, Inc.
11   - *
12   - * This package is free software; you can redistribute it and/or modify
13   - * it under the terms of the GNU General Public License version 2 as
14   - * published by the Free Software Foundation.
15   - *
16   - * THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
17   - * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
18   - * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19   - */
20   -
21   -#ifndef DBTYPE_
22   -#define DBTYPE_
23   -
24   -/*===========================================================================*/
25   -/* Argument specification syntax */
26   -/*===========================================================================*/
27   -
28   -#ifndef IN
29   -#define IN /* Following parameter is for input. */
30   -#endif
31   -
32   -#ifndef OUT
33   -#define OUT /* Following parameter is for output. */
34   -#endif
35   -
36   -#ifndef OPTIONAL
37   -#define OPTIONAL /* Function may optionally use previous parameter. */
38   -#endif
39   -
40   -#ifndef CONST
41   -#define CONST const
42   -#endif
43   -
44   -/*===========================================================================*/
45   -/* NULL character (normally used for string termination) */
46   -/*===========================================================================*/
47   -
48   -#ifndef NULL_CHAR
49   -#define NULL_CHAR '\0' /* Null character. */
50   -#endif
51   -
52   -/*===========================================================================*/
53   -/* Basic Type definitions (with Prefixes for Hungarian notation) */
54   -/*===========================================================================*/
55   -
56   -#ifndef OMAPBRIDGE_TYPES
57   -#define OMAPBRIDGE_TYPES
58   -typedef volatile unsigned short reg_uword16;
59   -#endif
60   -
61   -#define TEXT(x) x
62   -
63   -#define DLLIMPORT
64   -#define DLLEXPORT
65   -
66   -/* Define DSPAPIDLL correctly in dspapi.h */
67   -#define _DSPSYSDLL32_
68   -
69   -#endif /* DBTYPE_ */
drivers/staging/tidspbridge/include/dspbridge/host_os.h
... ... @@ -42,7 +42,6 @@
42 42 #include <linux/vmalloc.h>
43 43 #include <linux/ioport.h>
44 44 #include <linux/platform_device.h>
45   -#include <dspbridge/dbtype.h>
46 45 #include <plat/clock.h>
47 46 #include <linux/clk.h>
48 47 #include <plat/mailbox.h>