blob: e16478c4a943afc96bf64c05cc6730451fff8f47 [file] [log] [blame]
Alexander Shishkine443b332012-05-11 17:25:46 +03001/*
2 * debug.h - ChipIdea USB driver debug interfaces
3 *
4 * Copyright (C) 2008 Chipidea - MIPS Technologies, Inc. All rights reserved.
5 *
6 * Author: David Lopo
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#ifndef __DRIVERS_USB_CHIPIDEA_DEBUG_H
14#define __DRIVERS_USB_CHIPIDEA_DEBUG_H
15
16#ifdef CONFIG_USB_CHIPIDEA_DEBUG
Alexander Shishkin8e229782013-06-24 14:46:36 +030017int dbg_create_files(struct ci_hdrc *ci);
18void dbg_remove_files(struct ci_hdrc *ci);
Alexander Shishkine443b332012-05-11 17:25:46 +030019#else
Alexander Shishkin8e229782013-06-24 14:46:36 +030020static inline int dbg_create_files(struct ci_hdrc *ci)
Alexander Shishkine443b332012-05-11 17:25:46 +030021{
22 return 0;
23}
24
Alexander Shishkin8e229782013-06-24 14:46:36 +030025static inline void dbg_remove_files(struct ci_hdrc *ci)
Alexander Shishkine443b332012-05-11 17:25:46 +030026{
Alexander Shishkine443b332012-05-11 17:25:46 +030027}
28#endif
29
30#endif /* __DRIVERS_USB_CHIPIDEA_DEBUG_H */