Merge tag 'ntb-4.2' of git://github.com/jonmason/ntb
[deliverable/linux.git] / drivers / usb / chipidea / debug.h
CommitLineData
e443b333
AS
1/*
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
8e22978c
AS
17int dbg_create_files(struct ci_hdrc *ci);
18void dbg_remove_files(struct ci_hdrc *ci);
e443b333 19#else
8e22978c 20static inline int dbg_create_files(struct ci_hdrc *ci)
e443b333
AS
21{
22 return 0;
23}
24
8e22978c 25static inline void dbg_remove_files(struct ci_hdrc *ci)
e443b333 26{
e443b333
AS
27}
28#endif
29
30#endif /* __DRIVERS_USB_CHIPIDEA_DEBUG_H */
This page took 0.368148 seconds and 5 git commands to generate.