blob: 37285df359c161f1733ebbd3a7bbf0c2e9ba32d0 [file] [log] [blame]
Bob Beers50ee11f2010-03-04 08:40:46 -05001#ifndef _INC_SBEPROC_H_
2#define _INC_SBEPROC_H_
3
4/*-----------------------------------------------------------------------------
5 * sbeproc.h -
6 *
7 * Copyright (C) 2004-2005 SBE, Inc.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * For further information, contact via email: support@sbei.com
20 * SBE, Inc. San Ramon, California U.S.A.
21 *-----------------------------------------------------------------------------
Bob Beers50ee11f2010-03-04 08:40:46 -050022 */
23
24
25#ifdef CONFIG_PROC_FS
Bob Beers50ee11f2010-03-04 08:40:46 -050026void sbecom_proc_brd_cleanup (ci_t *);
27int __init sbecom_proc_brd_init (ci_t *);
28
David Howells766d1002013-04-08 22:47:46 +010029#else
30
Dulshani Gunawardhanaee1803c2013-05-22 23:29:26 +053031static inline void sbecom_proc_brd_cleanup(ci_t *ci)
David Howells766d1002013-04-08 22:47:46 +010032{
33}
34
Dulshani Gunawardhanaee1803c2013-05-22 23:29:26 +053035static inline int __init sbecom_proc_brd_init(ci_t *ci)
David Howells766d1002013-04-08 22:47:46 +010036{
37 return 0;
38}
39
Bob Beers50ee11f2010-03-04 08:40:46 -050040#endif /*** CONFIG_PROC_FS ***/
David Howells766d1002013-04-08 22:47:46 +010041
Bob Beers50ee11f2010-03-04 08:40:46 -050042#endif /*** _INC_SBEPROC_H_ ***/