GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / scsi / libsas / sas_dump.h
blob47b45d4f5258a469e9941a34e69d24e07cb7cd80
1 /*
2 * Serial Attached SCSI (SAS) Dump/Debugging routines header file
4 * Copyright (C) 2005 Adaptec, Inc. All rights reserved.
5 * Copyright (C) 2005 Luben Tuikov <luben_tuikov@adaptec.com>
7 * This file is licensed under GPLv2.
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of the
12 * License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 #include "sas_internal.h"
27 #ifdef SAS_DEBUG
29 void sas_dprint_porte(int phyid, enum port_event pe);
30 void sas_dprint_phye(int phyid, enum phy_event pe);
31 void sas_dprint_hae(struct sas_ha_struct *sas_ha, enum ha_event he);
32 void sas_dump_port(struct asd_sas_port *port);
34 #else /* SAS_DEBUG */
36 static inline void sas_dprint_porte(int phyid, enum port_event pe) { }
37 static inline void sas_dprint_phye(int phyid, enum phy_event pe) { }
38 static inline void sas_dprint_hae(struct sas_ha_struct *sas_ha,
39 enum ha_event he) { }
40 static inline void sas_dump_port(struct asd_sas_port *port) { }
42 #endif /* SAS_DEBUG */