Back to home page

OSCL-LXR

 
 

    


0001 /* Broadcom NetXtreme-C/E network driver.
0002  *
0003  * Copyright (c) 2017-2018 Broadcom Limited
0004  *
0005  * This program is free software; you can redistribute it and/or modify
0006  * it under the terms of the GNU General Public License as published by
0007  * the Free Software Foundation.
0008  */
0009 
0010 #include "bnxt_hsi.h"
0011 #include "bnxt.h"
0012 
0013 #ifdef CONFIG_DEBUG_FS
0014 void bnxt_debug_init(void);
0015 void bnxt_debug_exit(void);
0016 void bnxt_debug_dev_init(struct bnxt *bp);
0017 void bnxt_debug_dev_exit(struct bnxt *bp);
0018 #else
0019 static inline void bnxt_debug_init(void) {}
0020 static inline void bnxt_debug_exit(void) {}
0021 static inline void bnxt_debug_dev_init(struct bnxt *bp) {}
0022 static inline void bnxt_debug_dev_exit(struct bnxt *bp) {}
0023 #endif